...
Code Block | ||||||
---|---|---|---|---|---|---|
| ||||||
// RDIR_TEMPLATE - points to template directory $document = $registry->get(‘document’); $document->addStyle(array(RDIR_TEMPLATE.'stylesheet/some.css')); $document->addScript(RDIR_TEMPLATE.'javascript/some.js'); // in controller you can use this $this->document->addStyle(array(RDIR_TEMPLATE.'stylesheet/some.css')); $this->document->addScript(RDIR_TEMPLATE.'javascript/some.js'); |
...