joomla布局,如何改变主题?

时间:2013-04-28 12:48:43

标签: php oop joomla themes

如何将joomla组件布局重定向到自定义布局。我一直试图通过几种方式实现这一目标,但似乎并不奏效。我有我的控制器

class FrontpageController extends JController {

    protected $id;
    protected $input;

    function __construct($config = array()) {

        $this->input = JFactory::getApplication()->input;
        parent::__construct($config);
    }

    public function display($cachable = false, $urlparams = array()) {
        // Initialise variables.
        $this->input = JFactory::getApplication()->input;

        $cachable = true;

        // Set the default view name and format from the Request.
        $viewName = $this->input->get('view', 'frontpage');

        $this->input->set('view', $viewName);

        return parent::display($cachable, $safeurlparams);
    }

    public function getItem() {

        // Initialise variables.

        $item = $this->getModel('item');

        $this->input->set('view','item');

        if (!item) {
            JLog::add(implode('<br />', $errors), JLog::WARNING, 'jerror');
            return false;


            return $item;
        }
    }

}

比以下网址index.php?option=com_mycomponent&task=getItem&layout=item&id=2571应调用控制器getItem方法并将结果输出到名为item

的自定义布局中

1 个答案:

答案 0 :(得分:1)

简单的方法是在父类处理之前将布局设置为输入:

// Using JInput
$this->input->set('layout', 'customLayout');

return parent::display($cachable, $safeurlparams);

困难的方法是自己处理整个父类JControllerLegacy->display方法:使用自己的逻辑来检索布局并将其传递给视图。