本文整理汇总了PHP中application::action方法的典型用法代码示例。如果您正苦于以下问题:PHP application::action方法的具体用法?PHP application::action怎么用?PHP application::action使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类application
的用法示例。
在下文中一共展示了application::action方法的4个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: template
public function template($path = '')
{
$path = trim($path, '/');
if (empty($path)) {
$path = application::module() . '/' . application::controller() . '/' . application::action() . '.php';
}
$template = ZOTOP_PATH_THEMES . DS . application::theme() . DS . 'template' . DS . str_replace('/', DS, $path);
return $template;
}
示例2: boot
/**
* 应用程序启动
*
*/
public static function boot()
{
//app
define('ZOTOP_APP_URL_THEME', ZOTOP_APP_URL . '/themes/' . application::theme());
define('ZOTOP_APP_URL_COMMON', ZOTOP_APP_URL . '/common');
define('ZOTOP_APP_URL_CSS', ZOTOP_APP_URL_THEME . '/css');
define('ZOTOP_APP_URL_IMAGE', ZOTOP_APP_URL_THEME . '/image');
define('ZOTOP_APP_URL_JS', ZOTOP_APP_URL_COMMON . '/js');
//group
define('ZOTOP_GROUP', application::group());
//module
define('ZOTOP_MODULE', application::module());
define('ZOTOP_MODULE_URL', zotop::modules(ZOTOP_MODULE, 'url'));
define('ZOTOP_MODULE_URL_GROUP', ZOTOP_MODULE_URL . '/' . ZOTOP_GROUP);
define('ZOTOP_MODULE_PATH', zotop::modules(ZOTOP_MODULE, 'path'));
define('ZOTOP_MODULE_PATH_GROUP', ZOTOP_MODULE_PATH . DS . ZOTOP_GROUP);
//controller
define('ZOTOP_CONTROLLER', application::controller());
//action
define('ZOTOP_ACTION', application::action());
}
示例3: navbar
public function navbar($data = '', $current = '')
{
$html = array();
if (!is_array($data)) {
$data = $this->data['navbar'];
}
if (is_array($data)) {
$current = empty($current) ? $this->data['navbar.current'] : $current;
$current = empty($current) ? application::action() : $current;
$current = empty($current) ? $data[0]['id'] : $current;
$html[] = '';
$html[] = '<div class="navbar">';
$html[] = ' <ul>';
foreach ($data as $item) {
if (is_array($item)) {
$class = $current == $item['id'] ? 'current' : (empty($item['href']) ? 'hidden' : 'normal');
$href = empty($item['href']) ? '#' : $item['href'];
$html[] = ' <li class="' . $item['class'] . ' ' . $class . '"><a href="' . $href . '" id="' . $item['id'] . '"><span>' . $item['title'] . '</span></a></li>';
} else {
$html[] = ' <li class="' . $item['class'] . ' ' . $class . '">' . $item . '</li>';
}
}
$html[] = ' </ul>';
$html[] = '</div>';
}
echo implode("\n", $html);
}
示例4: template
public static function template($namespace = '')
{
if (empty($namespace)) {
$namespace = application::module() . '/' . application::controller() . '/' . application::action();
}
$namespace = str_replace('.', '/', $namespace);
$namespaces = explode('/', $namespace);
switch (count($namespaces)) {
case 1:
$module = application::module();
$namespace = $namespaces[0];
break;
default:
$module = array_shift($namespaces);
$namespace = implode('/', $namespaces);
break;
}
$template = zotop::module($module, 'path') . DS . ZOTOP_APPLICATION . DS . 'template' . DS . str_replace('/', DS, $namespace) . '.php';
return $template;
}