本文整理汇总了PHP中Templates::headers方法的典型用法代码示例。如果您正苦于以下问题:PHP Templates::headers方法的具体用法?PHP Templates::headers怎么用?PHP Templates::headers使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Templates
的用法示例。
在下文中一共展示了Templates::headers方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: load
/**
* Returns the current template directory
*
* @since 1.0
* @see get_option
* @todo This is dirrrty dirrrty code. Fix ASAP.
*
* @param string $view Name of the current view
* @param string $prefix String to prefix to the cache ID, defaults to template name
* @return string
*/
public static function load($view = 'chrono', $prefix = '')
{
if (empty($prefix)) {
$prefix = get_option('template');
}
$current = Templates::get_current();
$view_file = $view . '.php';
Templates::headers();
if (file_exists($current['Template Dir'] . '/' . $view_file)) {
require_once $current['Template Dir'] . '/' . $view_file;
} else {
require_once $current['Template Dir'] . '/index.php';
}
}
示例2: load
/**
* Returns the current template directory
*
* @since 1.0
* @see get_option
* @todo This is dirrrty dirrrty code. Fix ASAP.
*
* @param string $view Name of the current view
* @param string $prefix String to prefix to the cache ID, defaults to template name
* @return string
*/
public static function load($view = 'chrono', $prefix = '')
{
if (empty($prefix)) {
$prefix = get_option('template');
}
$current = Templates::get_current();
$view_file = $view . '.php';
Templates::headers();
$cache = new CacheHandler();
$cache->begin_caching($prefix . $_SERVER['REQUEST_URI']);
if (file_exists($current['Template Dir'] . '/' . $view_file)) {
require_once $current['Template Dir'] . '/' . $view_file;
} else {
require_once $current['Template Dir'] . '/index.php';
}
$cache->end_caching($prefix . $_SERVER['REQUEST_URI']);
}