Admin_ThemesController::wizardThemeTemplateSettingsAction PHP Метод

wizardThemeTemplateSettingsAction() публичный Метод

see Admin_ThemesController::outputEditAction()
    public function wizardThemeTemplateSettingsAction()
    {
        $themeId = $this->_request->getParam('id');
        $thmServ = $this->getThemeService();
        $theme = $thmServ->findById($themeId);
        $outServ = $this->getOutputService();
        foreach ($outputs = $outServ->getEntities() as $k => $output) {
            $outSets[] = $thmServ->findOutputSetting($theme, $output);
        }
        $this->view->jQueryUtils()->registerVar('load-output-settings-url', $this->_helper->url->url(array('action' => 'output-edit', 'controller' => 'themes', 'module' => 'admin', 'themeid' => '$1', 'outputid' => '$2'), null, true, false));
        $this->view->theme = $theme->toObject();
        $this->view->outputs = $outputs;
        $this->view->outputSettings = $outSets;
    }