Exemplo n.º 1
0
 /**
  * Rewrite init function and add isDelete condition
  */
 public function init()
 {
     parent::init();
     $this->andWhere(['isDeleted' => self::NOT_DELETED]);
 }
Exemplo n.º 2
0
 /**
  * Initializes the object.
  * This method is called at the end of the constructor. The default implementation will trigger
  * an [[EVENT_INIT]] event. If you override this method, make sure you call the parent implementation at the end
  * to ensure triggering of the event.
  */
 public function init()
 {
     parent::init();
     $this->trigger(self::EVENT_INIT);
 }