-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathextend.php
37 lines (28 loc) · 1.09 KB
/
extend.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
<?php
/*
* This file is part of ianm/htmlhead.
*
* Copyright (c) IanM.
*
* For the full copyright and license information, please view the LICENSE.md
* file that was distributed with this source code.
*
*/
namespace IanM\HtmlHead;
use Flarum\Extend;
use IanM\HtmlHead\Api\Controllers;
return [
(new Extend\Frontend('admin'))
->js(__DIR__.'/js/dist/admin.js')
->css(__DIR__.'/resources/less/admin.less'),
new Extend\Locales(__DIR__.'/resources/locale'),
(new Extend\Frontend('forum'))
->content(Content\AddHeaders::class),
(new Extend\Routes('api'))
->get('/html-headers', 'ianm.html-headers.index', Controllers\ListHeadersController::class)
->post('/html-headers', 'ianm.html-headers.create', Controllers\CreateHeaderItemController::class)
->patch('/html-headers/{id}', 'ianm.html-headers.update', Controllers\UpdateHeaderItemController::class)
->delete('/html-headers/{id}', 'ianm.html-headers.delete', Controllers\DeleteHeaderItemController::class),
(new Extend\Event())
->subscribe(Listener\ClearCache::class),
];