| Server IP : 54.36.91.62 / Your IP : 216.73.217.117 Web Server : Apache System : Linux webm013.cluster127.gra.hosting.ovh.net 5.15.206-ovh-vps-grsec-zfs-classid #1 SMP Fri May 15 02:41:25 UTC 2026 x86_64 User : coopiak ( 151928) PHP Version : 8.3.23 Disable Function : _dyuweyrj4,_dyuweyrj4r,dl MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : OFF | Pkexec : OFF Directory : /home/coopiak/amisdesseniors-fr/annonces/templates/yootheme/packages/styler/ |
Upload File : |
<?php
namespace YOOtheme\Theme\Styler;
use YOOtheme\Config;
use YOOtheme\Path;
return [
'theme' => fn(Config $config) => $config->loadFile(__DIR__ . '/config/theme.json'),
'config' => [
StylerConfig::class => __DIR__ . '/config/styler.json',
],
'routes' => [
['get', '/theme/styles', [StyleController::class, 'index']],
['get', '/theme/style', [StyleController::class, 'get']],
['post', '/theme/style', [StyleController::class, 'save']],
['get', '/styler/library', [LibraryController::class, 'index']],
['post', '/styler/library', [LibraryController::class, 'save']],
['delete', '/styler/library', [LibraryController::class, 'delete']],
],
'events' => [
'customizer.init' => [Listener\LoadStylerData::class => '@handle'],
'styler.imports' => [Listener\LoadStylerImports::class => ['@handle', 10]],
],
'services' => [
StylerConfig::class => '',
StyleFontLoader::class => [
'arguments' => [
'$cache' => fn() => Path::get('~theme/fonts'),
],
],
],
];