21 lines
530 B
PHP
Raw Normal View History

2017-12-10 21:11:13 +10:30
<?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 21:11:13 +10:30
*/
use Flarum\Extend;
2017-12-10 21:11:13 +10:30
return [
(new Extend\Frontend('admin'))
->js(__DIR__.'/js/dist/admin.js')
->css(__DIR__.'/less/admin.less'),
2020-06-20 01:43:47 +00:00
new Extend\Locales(__DIR__.'/locale'),
(new Extend\Routes('api'))
->get('/statistics', 'flarum-statistics.get-statistics', Flarum\Statistics\Api\Controller\ShowStatisticsData::class),
];