public function bootstrap($app) { Event::on(ActiveRecord::classname(), AppActiveRecord::EVENT_AFTER_TRANCINSERT, function ($event) { TcEventAction::EventActionAfterTrancInsert($event); }); Event::on(ActiveRecord::classname(), AppActiveRecord::EVENT_AFTER_TRANCUPDATE, function ($event) { TcEventAction::EventActionAfterTrancUpdate($event); }); Event::on(ActiveRecord::classname(), BaseActiveRecord::EVENT_AFTER_INSERT, function ($event) { TcEventAction::EventActionCreate($event); }); Event::on(ActiveRecord::classname(), BaseActiveRecord::EVENT_AFTER_UPDATE, function ($event) { TcEventAction::EventActionUpdate($event); }); Event::on(ActiveRecord::classname(), AppActiveRecord::EVENT_BEFORE_PUBLISH, function ($event) { TcEventAction::EventActionBeforePublish($event); }); Event::on(ActiveRecord::classname(), AppActiveRecord::EVENT_AFTER_PUBLISH, function ($event) { TcEventAction::EventActionAfterPublish($event); }); Event::on(AppActiveRecord::classname(), AppActiveRecord::EVENT_AFTER_SOFTDELETE, function ($event) { TcEventAction::EventActionSoftDelete($event); }); Event::on(AppActiveRecord::classname(), AppActiveRecord::EVENT_AFTER_UNPUBLISH, function ($event) { TcEventAction::EventActionUnpublish($event); }); }
public function bootstrap($app) { Event::on(ActiveRecord::classname(), AppActiveRecord::EVENT_AFTER_TRANCINSERT, function ($event) { TcEventAction::EventActionAfterTrancInsert($event); }); Event::on(ActiveRecord::classname(), AppActiveRecord::EVENT_AFTER_TRANCUPDATE, function ($event) { TcEventAction::EventActionAfterTrancUpdate($event); }); }
/** * Validation of source query data * * @throws InvalidConfigException */ protected function validateSourceData() { if (empty($this->query) || !$this->query instanceof ActiveQuery) { throw new InvalidConfigException("The 'query' property must be defined and must be an instance of '\\yii\\db\\ActiveQuery'."); } $class = isset($this->query->modelClass) ? $this->query->modelClass : null; if (empty($class) || !is_subclass_of($class, ActiveRecord::classname())) { throw new InvalidConfigException("The 'query' must be implemented using 'ActiveRecord::find()' method."); } $trait = 'kartik\\tree\\models\\TreeTrait'; if (!self::usesTrait($class, $trait)) { throw new InvalidConfigException("The model class '{$class}' for the 'query' must use the trait '{$trait}' or extend from 'kartik\\models\tree\\Tree'."); } }