Subversion Repositories PHPX

Compare Revisions

Last modification

Ignore whitespace Rev 70 → Rev 71

/trunk/Controller.php
92,14 → 92,32
 
/**
* (non-PHPDoc)
* @see View::addStylesheets()
*/
protected function addStylesheets (array $uris)
{
return $this->_view->addStylesheets($uris);
}
 
/**
* (non-PHPDoc)
* @see View::addSscript()
*/
protected function addScript ($uri, $key = null)
{
return $this->_view->addScript ($uri, $key);
return $this->_view->addScript($uri, $key);
}
 
/**
* (non-PHPDoc)
* @see View::addSscripts()
*/
protected function addScripts (array $uris)
{
return $this->_view->addScripts($uris);
}
 
/**
* Renders the {@link View} associated with this controller
* by including the <code>View</code>'s template.
* <code>Controller</code>s should call this method instead of