/home/techb158/l2hypotheques.com/wp-content/plugins/polylang/src/admin
Edit: /home/techb158/l2hypotheques.com/wp-content/plugins/polylang/src/admin/view-translations-media.php (1661B)
model->get_languages_list() as $language ) {
if ( $language->term_id === $lang->term_id ) {
continue;
}
$translation_id = $this->model->post->get_translation( $post->ID, $language );
$translation = null;
if ( ! empty( $translation_id ) && $translation_id !== $post->ID ) {
$translation = get_post( $translation_id );
}
?>
| flag; // phpcs:ignore WordPress.Security.EscapeOutput ?>name ); ?> |
',
esc_attr( $language->slug ),
(int) $translation->ID
);
echo $this->links->get_edit_post_link_html( $translation ); // phpcs:ignore WordPress.Security.EscapeOutput
} else {
// The translation doesn't exist.
echo $this->links->get_new_post_link_html( $post, $language ); // phpcs:ignore WordPress.Security.EscapeOutput
}
?>
|