public function init()
 {
     $this->enableTheme = false;
     parent::init();
     $this->defaultAction = 'rss';
     $this->layout = null;
 }
Ejemplo n.º 2
0
 /**
  * @inheritdoc
  */
 public function actions()
 {
     $actions = parent::actions();
     unset($actions['create']);
     unset($actions['delete']);
     unset($actions['update']);
     return $actions;
 }
Ejemplo n.º 3
0
 /**
  * @inheritdoc
  */
 public function actions()
 {
     $actions = parent::actions();
     unset($actions['index']);
     return $actions;
 }
Ejemplo n.º 4
0
 public function beforeAction($action)
 {
     $ok = parent::beforeAction($action);
     return $ok;
 }
Ejemplo n.º 5
0
 public function beforeAction($action)
 {
     return parent::beforeAction($action);
     // TODO: Change the autogenerated stub
 }
Ejemplo n.º 6
0
 public function beforeAction($action)
 {
     return parent::beforeAction($action);
 }