framework/extensions/statistics/extend.php

21 lines
458 B
PHP
Raw Normal View History

2017-12-10 18:41:13 +08:00
<?php
/*
* This file is part of Flarum.
*
* For detailed copyright and license information, please view the
* LICENSE file that was distributed with this source code.
2017-12-10 18:41:13 +08:00
*/
use Flarum\Extend;
use Flarum\Statistics\AddStatisticsData;
2017-12-10 18:41:13 +08:00
return [
(new Extend\Frontend('admin'))
->js(__DIR__.'/js/dist/admin.js')
->css(__DIR__.'/less/admin.less')
->content(AddStatisticsData::class),
2020-06-20 09:43:47 +08:00
new Extend\Locales(__DIR__.'/locale'),
];