1234567891011121314151617181920212223 |
- <?php
- /**
- * Created by PhpStorm.
- * User: xiaofeng
- * Date: 2018/3/23
- * Time: 下午1:48
- */
- namespace common\event;
- use yii\base\Component;
- use Yii;
- class Event extends Component
- {
- const EVENT_EMAIL = 'send_email'; //发送邮件时间
- public function SendEmail($arr)
- {
- $Help = new \backend\base\Help(); //静态方法无需new
- $brr['path'] = 'http://ygadmin.yigouf.com/tinifyimg/sendemail';
- $brr['data'] = $arr;
- $this->on(self::EVENT_EMAIL,[$Help,'AjaxRequest'],$brr);
- $this->trigger(self::EVENT_EMAIL);
- }
- }
|