function.assigntopbar.php

来自「一款可以和GOOGLE媲美的开源统计系统,运用AJAX.功能强大. 无色提示:」· PHP 代码 · 共 18 行

PHP
18
字号
<?php/** * Enter description here... * * @param array $params * @param Smarty $smarty */function smarty_function_assignTopBar($params, &$smarty){	$topBarElements = array(		array('CoreHome', 'Your Dashboard', array('module' => 'CoreHome', 'action' => 'index')),		array('Widgetize', 'Widgets',  array('module' => 'Widgetize', 'action' => 'index')), 		array('API', 'API', array('module' => 'API', 'action' => 'listAllAPI')),		array('Feedback', 'Give us Feedback!', array('module' => 'Feedback', 'action' => 'index', 'keepThis' => 'true', 'TB_iframe' => 'true', 'height' => '400', 'width' => '350'), 'title="Give us Feedback!" class="thickbox"'),	);	$smarty->assign("topBarElements", $topBarElements);}

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?