2021-04-29 17:40:19 +01:00
|
|
|
<?php
|
|
|
|
|
2021-10-10 09:26:18 +01:00
|
|
|
declare(strict_types = 1);
|
|
|
|
|
2021-04-29 17:40:19 +01:00
|
|
|
// {{{ License
|
|
|
|
// This file is part of GNU social - https://www.gnu.org/software/social
|
|
|
|
//
|
|
|
|
// GNU social is free software: you can redistribute it and/or modify
|
|
|
|
// it under the terms of the GNU Affero General Public License as published by
|
|
|
|
// the Free Software Foundation, either version 3 of the License, or
|
|
|
|
// (at your option) any later version.
|
|
|
|
//
|
|
|
|
// GNU social is distributed in the hope that it will be useful,
|
|
|
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
// GNU Affero General Public License for more details.
|
|
|
|
//
|
|
|
|
// You should have received a copy of the GNU Affero General Public License
|
|
|
|
// along with GNU social. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
// }}}
|
|
|
|
|
2021-12-01 20:13:24 +00:00
|
|
|
namespace Component\RightPanel;
|
2021-04-29 17:40:19 +01:00
|
|
|
|
2021-10-01 17:25:51 +01:00
|
|
|
use App\Core\Event;
|
2021-04-29 17:40:19 +01:00
|
|
|
use App\Core\Modules\Component;
|
|
|
|
|
2021-12-01 20:13:24 +00:00
|
|
|
class RightPanel extends Component
|
2021-04-29 17:40:19 +01:00
|
|
|
{
|
2021-10-01 17:25:51 +01:00
|
|
|
/**
|
|
|
|
* Output our dedicated stylesheet
|
|
|
|
*
|
|
|
|
* @param array $styles stylesheets path
|
|
|
|
*
|
2021-10-10 09:26:18 +01:00
|
|
|
* @return bool hook value; true means continue processing, false means stop
|
2021-10-01 17:25:51 +01:00
|
|
|
*/
|
2021-10-06 00:34:27 +01:00
|
|
|
public function onEndShowStyles(array &$styles, string $route): bool
|
2021-10-01 17:25:51 +01:00
|
|
|
{
|
2022-01-17 16:32:41 +00:00
|
|
|
$styles[] = 'components/RightPanel/assets/css/view.css';
|
2021-10-01 17:25:51 +01:00
|
|
|
return Event::next;
|
|
|
|
}
|
2021-04-29 17:40:19 +01:00
|
|
|
}
|