Tag: Event

  • Yii2 类级别的事件(Class-Level Event Handlers)

    文件结构 Structure ├── … ├── components │ └── SampleEventComponent.php ├── config │ └── web.php ├── controllers │ └── SiteController.php ├── events │ ├── BaseEvent.php │ ├── SampleEvent.php │ └── TestEvent.php ├── interfaces │ └── EventInterface.php └── yii 启动 Bootstrap create SampleEventComponent and load when app bootstrapped. // config/web.php $config = [ … 'bootstrap' => ['log',…