1234567891011121314151617181920212223242526272829303132 |
- <?php
- namespace crmeb\subscribes;
- use think\facade\Db;
- class MaterialSubscribe
- {
- public function handle()
- {
- }
-
- public function onWechatMaterialAfter($event)
- {
- list($data, $type) = $event;
- $data['type'] = $type;
- $data['add_time'] = time();
- $data['temporary'] = 0;
- Db::name('WechatMedia')->insert($data);
- }
- }
|