1234567891011121314151617181920 |
- <?php
- declare (strict_types = 1);
- namespace app\listener;
- use app\admin\model\Action;
- use app\admin\model\RoleAction;
- class roleListen
- {
- /**
- * 事件监听处理
- *
- * @return mixed
- */
- public function handle($event)
- {
- $acction= Action::where(["status"=>1,"is_del"=>0])->column("id");
- RoleAction::where(["role_id"=>1])->save(["action_conllect"=>implode(",",$acction)]);
- }
- }
|