1
0
Fork 0
mirror of https://github.com/Oreolek/ifhub.club.git synced 2024-07-01 05:55:02 +03:00
ifhub.club/application/frontend/skin/developer/navs/nav.create.tpl
2014-10-16 14:31:34 +07:00

26 lines
680 B
Smarty

{**
* Навгиация создания топика
*}
{$items = []}
{* Формируем список пунктов *}
{$topicTypes = $LS->Topic_GetTopicTypes()}
{foreach $topicTypes as $type}
{$items[] = [ 'name' => $type->getCode(), 'url' => $type->getUrlForAdd(), 'text' => $type->getName() ]}
{/foreach}
{* Пункт "Черновики" *}
{$items[] = [
'name' => 'drafts',
'url' => "{router page='content'}drafts/",
'text' => $aLang.topic.drafts,
'count' => $iUserCurrentCountTopicDraft
]}
{include 'components/nav/nav.tpl'
name = 'create'
activeItem = $sMenuSubItemSelect
mods = 'pills'
items = $items}