本文整理汇总了PHP中KSSystem::_template_controller方法的典型用法代码示例。如果您正苦于以下问题:PHP KSSystem::_template_controller方法的具体用法?PHP KSSystem::_template_controller怎么用?PHP KSSystem::_template_controller使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类KSSystem
的用法示例。
在下文中一共展示了KSSystem::_template_controller方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: loadTemplate
public static function loadTemplate(array $vars, $view = 'catalog', $layout = 'default', $tmpl = 'item')
{
$option = JFactory::getApplication()->input->get('option', null, 'string');
if (!is_object(self::$_template_controller)) {
if ($option != 'com_ksenmart') {
self::$_template_controller = self::getController($view);
} else {
self::$_template_controller = JControllerLegacy::getInstance('KsenMartController' . ucfirst($view));
}
}
$view = self::$_template_controller->getView($view, 'html');
$model = self::$_template_controller->getModel('catalog');
$current_layout = $view->getLayout();
$view->setLayout($layout);
if (empty($layout)) {
$view->setLayout($tmpl);
}
$view->setModel($model, true);
foreach ($vars as $name => $var) {
$view->assign($name, $var);
}
$view->addTemplatePath(JPATH_THEMES . '/' . JFactory::getApplication()->getTemplate() . '/html/com_ksenmart/' . $view->getName());
$html = $view->loadTemplate($tmpl);
$view->setLayout($current_layout);
return $html;
}