Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Code Block
languagephp
themeDJango
title//For example you need to add css and js
// 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');

...