/** * @brief Funcion que despliega el contenido, esta se reescribe * en los controladores hijos. * @return bool */ function display() { Toolbar::listBanner(); JRequest::setVar('view', 'banner'); // Se borra el directorio temporal, para no dejar archivos basura almacenados if (!$this->deleteTemporary()) { return false; } $model =& $this->getModel('banner'); $view =& $this->getView('banner', 'html'); $view->setModel($model, true); parent::display(); return true; }