| Server IP : 213.186.33.4 / Your IP : 216.73.216.222 Web Server : Apache System : Linux webm005.cluster103.gra.hosting.ovh.net 6.18.39-ovh-vps-grsec-zfs+ #1 SMP PREEMPT_DYNAMIC Tue Jul 21 12:03:15 CEST 2026 x86_64 User : karinebmkh ( 644538) PHP Version : 8.4.22 Disable Function : _dyuweyrj4,_dyuweyrj4r,dl MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : OFF | Pkexec : OFF Directory : /home/karinebmkh/www/wp-content/plugins/polylang/admin/ |
Upload File : |
<?php
/**
* Displays the translations fields for media
* Needs WP 3.5+
*
* @package Polylang
*
* @var PLL_Admin_Classic_Editor $this PLL_Admin_Classic_Editor object.
* @var PLL_Language $lang The media language. Default language if no language assigned yet.
* @var int $post_ID The media Id.
*/
defined( 'ABSPATH' ) || exit;
?>
<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; // phpcs:ignore WordPress.Security.EscapeOutput ?></span><?php echo esc_html( $language->name ); ?></td>
<td class = "pll-media-edit-column">
<?php
$translation_id = $this->model->post->get_translation( $post_ID, $language );
if ( ! empty( $translation_id ) && $translation_id !== $post_ID ) {
// The translation exists
printf(
'<input type="hidden" name="media_tr_lang[%s]" value="%d" />',
esc_attr( $language->slug ),
(int) $translation_id
);
echo $this->links->edit_post_translation_link( $translation_id ); // phpcs:ignore WordPress.Security.EscapeOutput
} else {
// No translation
echo $this->links->new_post_translation_link( $post_ID, $language ); // phpcs:ignore WordPress.Security.EscapeOutput
}
?>
</td>
</tr>
<?php
} // End foreach
?>
</table>