_title_en.php 199 Bytes
Newer Older
Яков's avatar
first  
Яков committed
1
2
3
4
5
6
7
8
9
10
11
<?php
$available = $article->getTranslation()->en->available;

if($available)
{
    echo $article->getTranslation()->en->title;
}
else
{
    echo '<div class="notActive">Не активно</div>';
}