本文整理汇总了PHP中XTemplate::restart方法的典型用法代码示例。如果您正苦于以下问题:PHP XTemplate::restart方法的具体用法?PHP XTemplate::restart怎么用?PHP XTemplate::restart使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类XTemplate
的用法示例。
在下文中一共展示了XTemplate::restart方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: restart
/**
* Override of parent restart method
*
* @access public
* @param string $file Template file to work on
* @param string $tpldir Location of template files
* @param array $files Filenames lookup
* @param string $mainblock Name of main block in the template
* @param boolean $autosetup If true, run setup() as part of restarting
* @param string $tag_start {
* @param string $tag_end }
* @param int $cache_expiry Seconds to cache for
* @param string $cache_unique Unique file id (e.g. session_id())
* @param string $cache_dir Cache folder
* @param string $cache_ext Cache file extension
*/
public function restart($file, $tpldir = '', $files = null, $mainblock = 'main', $autosetup = true, $tag_start = '{', $tag_end = '}', $cache_expiry = 0, $cache_unique = '', $cache_dir = './xcache', $cache_ext = '.xcache')
{
if ($cache_expiry > 0) {
$this->cache_expiry = $cache_expiry;
}
if (!empty($cache_unique)) {
if (!preg_match('/^\\./', $cache_unique)) {
$cache_unique = '.' . $cache_unique;
}
$this->cache_unique = $cache_unique;
}
if (!empty($cache_dir)) {
$this->cache_dir = $cache_dir;
}
if (!empty($cache_ext)) {
if (!preg_match('/^\\./', $cache_ext)) {
$cache_ext = '.' . $cache_ext;
}
$this->cache_ext = $cache_ext;
}
// Call parent restart method but don't run setup yet!
parent::restart($file, $tpldir, $files, $mainblock, false, $tag_start, $tag_end);
if ($this->cache_expiry > 0) {
$this->read_template_cache();
}
if (!$this->_template_is_cached && $autosetup) {
$this->setup();
}
}