Plugin.php 583 B

123456789101112131415161718192021222324252627282930
  1. <?php
  2. /**
  3. * Created by PhpStorm.
  4. * User: NODELOG
  5. * Date: 16/7/13
  6. * Time: 下午3:35
  7. */
  8. namespace plugins\wxfollow;
  9. use yii\base\Event;
  10. class Plugin extends \plugins\Plugin
  11. {
  12. public $info = [
  13. 'author' => 'nodelog',
  14. 'version' => 'v1.0',
  15. 'id' => 'wxfollow',
  16. 'name' => '微信关注取关',
  17. 'description' => '微信关注取关'
  18. ];
  19. public function wechat($app)
  20. {
  21. $config = $this->getConfig();
  22. Event::on('yii\web\Controller','afterAction', ['plugins\wxfollow\FollowListener', 'handle'], $config);
  23. }
  24. }