22 lines
479 B
PHP
22 lines
479 B
PHP
<?php
|
|
|
|
/*
|
|
* This file is part of fof/profile-image-crop.
|
|
*
|
|
* Copyright (c) FriendsOfFlarum.
|
|
*
|
|
* For the full copyright and license information, please view the LICENSE
|
|
* file that was distributed with this source code.
|
|
*/
|
|
|
|
namespace FoF\ProfileImageCrop;
|
|
|
|
use Flarum\Extend;
|
|
|
|
return [
|
|
(new Extend\Frontend('forum'))
|
|
->js(__DIR__.'/js/dist/forum.js')
|
|
->css(__DIR__.'/resources/less/forum.less'),
|
|
|
|
new Extend\Locales(__DIR__.'/resources/locale'),
|
|
];
|