Report abuse

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
class Default_Bootstrap extends Zend_Application_Module_Bootstrap {
    protected function _initViewNHelpers() {
        define('PREPEND', 'PREPEND');
        define('APPEND', 'APPEND');

        $this->bootstrap('layout');
        $layout = $this->getResource('layout');
        $layout->setLayoutPath( APPLICATION_PATH . '/modules/default/layouts/' );
        $view = $layout->getView();

        $view->doctype('XHTML1_TRANSITIONAL');
        $view->headMeta()
                ->appendHttpEquiv('Content-type', 'text/html;charset=utf-8')
                ->appendName('description', 'Some description')
                ->appendName('keywords', 'asdo');

        $view->headTitle()
                ->setSeparator(' - ');
        $view->headTitle('OvarsAntik.com');
    }
}