本文整理汇总了PHP中Layout::path方法的典型用法代码示例。如果您正苦于以下问题:PHP Layout::path方法的具体用法?PHP Layout::path怎么用?PHP Layout::path使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Layout
的用法示例。
在下文中一共展示了Layout::path方法的4个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1:
?>
images/favicon.png" type="image/png" />
<?php
echo Layout::zone('meta');
?>
<!-- reset and font stylesheet -->
<?php
echo Layout::resetter();
?>
<!-- common stylesheet -->
<link rel="stylesheet" type="text/css" href="<?php
echo Layout::path();
?>
style/base.css" />
<link rel="stylesheet" type="text/css" href="<?php
echo Layout::path();
?>
style/lms-home.css" />
<?php
echo Layout::rtl();
?>
<!-- specific stylesheet -->
<?php
YuiLib::load('base');
?>
<!-- printer stylesheet-->
<?php
echo Layout::accessibility();
?>
<!-- Page Head area -->
<?php
示例2: createModule
$module_cfg = false;
$GLOBALS['modname'] = Get::req('modname', DOTY_ALPHANUM, '');
$GLOBALS['op'] = Get::req('op', DOTY_ALPHANUM, '');
$r = Get::req('r', DOTY_MIXED, '');
$GLOBALS['mvc'] = $r;
if (!empty($GLOBALS['modname'])) {
require_once _lms_ . '/lib/lib.istance.php';
$module_cfg =& createModule($GLOBALS['modname']);
}
if ($r !== '') {
$GLOBALS['page']->add(Util::get_css(Layout::path() . 'style/base.css', true), 'page_head');
$GLOBALS['page']->add(Util::get_css(Layout::path() . 'style/base-old-treeview.css', true), 'page_head');
$GLOBALS['page']->add(Util::get_css(Layout::path() . 'style/lms.css', true), 'page_head');
$GLOBALS['page']->add(Util::get_css(Layout::path() . 'style/lms-to-review.css', true), 'page_head');
$GLOBALS['page']->add(Util::get_css(Layout::path() . 'style/lms-menu.css', true), 'page_head');
$GLOBALS['page']->add(Util::get_css(Layout::path() . 'style/print.css', true), 'page_head');
$r = preg_replace('/[^a-zA-Z0-9\\-\\_\\/]+/', '', $r);
$r = explode('/', $r);
if (count($r) == 3) {
// Position, class and method defined in the path requested
$mvc_class = ucfirst(strtolower($r[1])) . ucfirst(strtolower($r[0])) . 'Controller';
$mvc_name = $r[1];
$task = $r[2];
} else {
// Only class and method defined in the path requested
$mvc_class = '' . ucfirst(strtolower($r[0])) . 'LmsController';
$mvc_name = $r[0];
$task = $r[1];
}
ob_clean();
$controller = new $mvc_class($mvc_name);
示例3: rtl
public static function rtl()
{
if (!self::$_lang) {
self::$_lang = Docebo::langManager()->getLanguageInfo(Lang::get());
}
if (isset(self::$_lang->lang_direction) && self::$_lang->lang_direction == 'rtl') {
echo '<link rel="stylesheet" type="text/css" href="' . Layout::path() . 'style/base-rtl.css" />';
}
}
示例4: __construct
public function __construct($p_settings = array())
{
$p_settings[] = new \Mangrova\Link(['rel' => 'stylesheet', 'type' => 'text/css', 'href' => Layout::path() . 'Main.css']);
parent::__construct($p_settings);
}