コード例 #1
0
ファイル: DefaultController.php プロジェクト: nuralys/yii
 public function actionEvent()
 {
     $component = new Common();
     $component->on(Common::EVENT_NOTIFY, [$component, 'notifyAdmin']);
     $component->sendMail("*****@*****.**", "Test", "Test text");
     $component->off(Common::EVENT_NOTIFY, [$component, 'notifyAdmin']);
 }
コード例 #2
0
ファイル: DefaultController.php プロジェクト: matveu/Yii2
 public function actionEvent()
 {
     $component = new Common();
     $component->on(Common::EVENT_NOTIFY, [$component, 'notifyAdmin']);
     $component->sendMail('*****@*****.**', 'test', 'test test test');
 }
コード例 #3
0
ファイル: DefaultController.php プロジェクト: criozone/Yii2
 public function actionEvent()
 {
     $component = new Common();
     $component->on(Common::EVENT_NOTIFY, [$component, 'notifyEventHandler']);
     $component->makeEvent();
 }