2017-12-10 21:11:13 +10:30
|
|
|
<?php
|
|
|
|
|
|
|
|
/*
|
|
|
|
* This file is part of Flarum.
|
|
|
|
*
|
2022-03-11 18:11:20 -05:00
|
|
|
* For detailed copyright and license information, please view the
|
|
|
|
* LICENSE file that was distributed with this source code.
|
2017-12-10 21:11:13 +10:30
|
|
|
*/
|
|
|
|
|
2018-06-20 13:35:48 +09:30
|
|
|
use Flarum\Extend;
|
2020-12-08 13:08:26 -05:00
|
|
|
use Flarum\Statistics\AddStatisticsData;
|
2017-12-10 21:11:13 +10:30
|
|
|
|
2018-06-20 13:35:48 +09:30
|
|
|
return [
|
2018-07-27 16:38:42 +07:00
|
|
|
(new Extend\Frontend('admin'))
|
2018-06-20 13:35:48 +09:30
|
|
|
->js(__DIR__.'/js/dist/admin.js')
|
2018-10-21 22:35:12 +02:00
|
|
|
->css(__DIR__.'/less/admin.less')
|
2020-12-08 13:08:26 -05:00
|
|
|
->content(AddStatisticsData::class),
|
2020-06-19 21:43:34 -04:00
|
|
|
|
2020-06-20 01:43:47 +00:00
|
|
|
new Extend\Locales(__DIR__.'/locale'),
|
2018-06-20 13:35:48 +09:30
|
|
|
];
|