Как переместить «виды» Zend_Layout - PullRequest
2 голосов
/ 16 марта 2010

Обычно это было бы в такой структуре:

../application/modules/somemodule/views/scripts/index/index.phtml

Как мне переместить его на:

../application/templates/somemodule/template1/views/......
../application/templates/somemodule/templateTWOOMG/.......

??

Ответы [ 2 ]

3 голосов
/ 16 марта 2010

Вам необходимо поиграть с: $viewRenderer::setViewBasePathSpec();

Например, в плагине frontController (или проще, но не так гибко, в Bootstrap.php):

$templateName = 'myTemplate';

$bootstrap = $this->getBootstrap();

$bootstrap->bootstrap('layout');
if ($bootstrap->hasResource('layout')) {
    $layout = $bootstrap->getResource('layout');
    $layout->setLayoutPath($basePath . '/layouts/scripts/');
}

$bootstrap->bootstrap('view');
if ($bootstrap->hasResource('view')) {
    $view = $bootstrap->getResource('view');
} else {
    $view = new Zend_View;
}

$vr = Zend_Controller_Action_HelperBroker::getExistingHelper("viewRenderer");
$vr->setViewBasePathSpec($basePath."/modules/:module/$templateName/views/");

Посмотрите на геттеры и сеттеры в классах frontController, view, layout и viewRenderer. Существует множество методов, позволяющих настроить структуру каталогов по умолчанию.

0 голосов
/ 02 марта 2013

Я сделал это с помощью плагина и установил переменную в моей конфигурации, чтобы указать название темы.

class Application_Plugin_ThemeSetup extends Zend_Controller_Plugin_Abstract
{
    public function preDispatch(Zend_Controller_Request_Abstract $request)
    {
        // load up the config and the view object
        $objConfig = Zend_Registry::get('config');
        $objView   = Zend_Controller_Front::getInstance()->getParam('bootstrap')->getResource('view');

        // set path for views based on theme designation in config
        $theme = ! empty($objConfig->theme->name) ? $objConfig->theme->name : 'default';

        $Renderer = Zend_Controller_Action_HelperBroker::getStaticHelper('viewRenderer');
        $Renderer->setViewBasePathSpec(APPLICATION_PATH."/views/$theme");

        // add some variable to the view at high level
        $objView->themeName = $objConfig->theme->name;
        $objView->themeDescription = $objConfig->theme->description;
    }
}
...