mirror of https://github.com/avecms/AVE.cms.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
662 B
23 lines
662 B
7 years ago
|
{*
|
||
|
Доступные параметры:
|
||
|
-----------------------------------------------------------
|
||
|
{$field_id} ID поля
|
||
|
{$field_value} Данные поля (массив)
|
||
|
|
||
|
$item.Id
|
||
|
$item.document_title
|
||
|
$item.document_alias
|
||
|
$item.document_breadcrum_title
|
||
|
|
||
|
{$field_count} Кол-во элементов в массиве
|
||
|
{$rubric_id} ID рубрики
|
||
|
{$default} Значение по умолчанию
|
||
|
|
||
|
Пример вывода:
|
||
|
-----------------------------------------------------------
|
||
|
*}
|
||
|
<ul>
|
||
|
{foreach from=$field_value item=item}
|
||
|
<li><a href="{$ABS_PATH}{$item.document_alias}">{$item.document_title}</a></li>
|
||
|
{/foreach}
|
||
|
</ul>
|