%PDF- %PDF-
| Direktori : /home/dopla/www/wp-content/plugins/polylang/admin/ |
| Current File : /home/dopla/www/wp-content/plugins/polylang/admin/view-translations-media.php |
<?php
/**
* Displays the translations fields for media
* Needs WP 3.5+
*/
if ( ! defined( 'ABSPATH' ) ) {
exit; // Don't access directly
};
?>
<p><strong><?php esc_html_e( 'Translations', 'polylang' ); ?></strong></p>
<table>
<?php
foreach ( $this->model->get_languages_list() as $language ) {
if ( $language->term_id == $lang->term_id ) {
continue;
}
?>
<tr>
<td class = "pll-media-language-column"><span class = "pll-translation-flag"><?php echo $language->flag; ?></span><?php echo esc_html( $language->name ); ?></td>
<td class = "pll-media-edit-column">
<?php
// The translation exists
if ( ( $translation_id = $this->model->post->get_translation( $post_id, $language ) ) && $translation_id !== $post_id ) {
printf(
'<input type="hidden" name="media_tr_lang[%s]" value="%d" />%s',
esc_attr( $language->slug ),
esc_attr( $translation_id ),
$this->links->edit_post_translation_link( $translation_id )
);
}
// No translation
else {
echo $this->links->new_post_translation_link( $post_id, $language );
}
?>
</td>
</tr>
<?php
} // End foreach
?>
</table>