| Server IP : 94.16.115.136 / Your IP : 216.73.217.106 Web Server : Apache/2.4.52 (Ubuntu) System : Linux rogerrabbit 5.15.0-185-generic #195-Ubuntu SMP Fri Jun 19 17:11:50 UTC 2026 x86_64 User : bkillingseder ( 1001) PHP Version : 8.1.2-1ubuntu2.25 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : ON | Pkexec : ON Directory : /srv/web/www/sites/silentroots/html/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>