1234567891011121314151617181920212223242526272829303132333435 |
- <?php
- /**
- * Created by PhpStorm.
- * User: NODELOG
- * Date: 16/7/4
- * Time: 下午12:43
- */
- namespace plugins\danmu;
- use yii\base\BootstrapInterface;
- use yii\web\View;
- use yii\base\Event;
- use plugins\danmu\controllers\DefaultController;
- class Plugin extends \plugins\Plugin implements BootstrapInterface
- {
- public $info = [
- 'author' => 'nodelog',
- 'version' => 'v1.0',
- 'id' => 'danmu',
- 'name' => 'danmu',
- 'description' => '文章评论弹幕'
- ];
- public function frontend($app)
- {
- Event::on(View::className(), 'afterComment', ['plugins\danmu\Danmu', 'handle']);
- $app->controllerMap['danmu'] = [
- 'class' => DefaultController::className(),
- ];
- }
- }
|