1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495 |
- <?php
- declare(strict_types = 1);
- namespace Plugin\ProfileColor;
- use App\Core\Cache;
- use App\Core\DB\DB;
- use App\Core\Event;
- use App\Core\Modules\Plugin;
- use App\Core\Router\RouteLoader;
- use App\Util\Exception\RedirectException;
- use App\Util\Exception\ServerException;
- use App\Util\Formatting;
- use Plugin\ProfileColor\Controller as C;
- use Symfony\Component\HttpFoundation\Request;
- class ProfileColor extends Plugin
- {
-
- public function onAddRoute(RouteLoader $r): bool
- {
- $r->connect('settings_profile_color', 'settings/color', [Controller\ProfileColor::class, 'profileColorSettings']);
- return Event::next;
- }
-
- public function onPopulateSettingsTabs(Request $request, string $section, array &$tabs): bool
- {
- if ($section === 'colours') {
- $tabs[] = [
- 'title' => 'Profile Colour',
- 'desc' => 'Change your profile colour.',
- 'id' => 'settings-profile-colour-details',
- 'controller' => C\ProfileColor::profileColorSettings($request),
- ];
- }
- return Event::next;
- }
-
- public function onAppendCardProfile(array $vars, array &$res): bool
- {
- $actor = $vars['actor'];
- if ($actor !== null) {
- $actor_id = $actor->getId();
- $profile_color = Cache::get("profile-color-{$actor_id}", fn () => DB::findOneBy('profile_color', ['actor_id' => $actor_id], return_null: true));
- if (!\is_null($profile_color)) {
- $res[] = Formatting::twigRenderFile('/profileColor/profileColorView.html.twig', ['profile_color' => $profile_color, 'actor' => $actor_id]);
- }
- }
- return Event::next;
- }
- }
|