24 lines
510 B
PHP
24 lines
510 B
PHP
|
|
<?php
|
||
|
|
|
||
|
|
/*
|
||
|
|
* This file is part of klxf/flarum-coyote-pulse-viewer.
|
||
|
|
*
|
||
|
|
* Copyright (c) 2025 Fang_Zhijian.
|
||
|
|
*
|
||
|
|
* For the full copyright and license information, please view the LICENSE.md
|
||
|
|
* file that was distributed with this source code.
|
||
|
|
*/
|
||
|
|
|
||
|
|
namespace Klxf\CoyotePulseViewer;
|
||
|
|
|
||
|
|
use Flarum\Extend;
|
||
|
|
|
||
|
|
return [
|
||
|
|
(new Extend\Frontend('forum'))
|
||
|
|
->js(__DIR__.'/js/dist/forum.js'),
|
||
|
|
new Extend\Locales(__DIR__.'/locale'),
|
||
|
|
|
||
|
|
(new Extend\Formatter())
|
||
|
|
->configure(FormatterConfigure::class),
|
||
|
|
];
|