framework/extensions/statistics/extend.php

25 lines
557 B
PHP
Raw Normal View History

2017-12-10 18:41:13 +08:00
<?php
/*
* This file is part of Flarum.
*
* (c) Toby Zerner <toby.zerner@gmail.com>
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
use Flarum\Extend;
2017-12-10 18:41:13 +08:00
use Flarum\Statistics\Listener;
use Illuminate\Contracts\Events\Dispatcher;
return [
(new Extend\Frontend('admin'))
->js(__DIR__.'/js/dist/admin.js')
->css(__DIR__.'/less/admin.less'),
function (Dispatcher $events) {
$events->subscribe(Listener\AddStatisticsData::class);
}
];