Проверка на существование внешнего файла
{def $myfile = "/here/pic.jpg"}
{section show = $myfile|file_exists}
//Do something
{/section}
Проверка на IsEmpty
{section show = $news_item.data_map.image.content[news].is_empty}
// etc.
{section-else}
<img src = {$news_item.data_map.image.content[news].full_path|ezroot}/>
{/section}
// Еще один пример:
{section show = $attribute.content.is_empty}
// is empty
{section-else}
// is not empty
{/section}
// Тоже самое для дат:
{section show = $event.data_map.date.has_content}
{$event.data_map.date.content.timestamp|datetime( 'custom', '%F %d, %Y' )}
{/section}
// Проверка на NULL:
{if $news_item.data_map.image.content[news]|null()}
<p>IMAGE IS NULL</p>
{else}
<img src = {$news_item.data_map.image.content[news].full_path|ezroot}/>
{/if}
Комментарии
Оставить комментарий
Для того чтобы оставить комментарий, авторизуйтесь.
Для того чтобы оставить комментарий, заполните поля, приведенные ниже.