mirror of
https://code.castopod.org/adaures/castopod
synced 2025-04-18 20:41:18 +00:00
21 lines
635 B
PHP
21 lines
635 B
PHP
<?php
|
||
|
||
declare(strict_types=1);
|
||
|
||
use PHPIcons\Config\PHPIconsConfig;
|
||
|
||
return PHPIconsConfig::configure()
|
||
->withPaths([__DIR__ . '/app', __DIR__ . '/themes', __DIR__ . '/resources'])
|
||
->withLocalIconSets([
|
||
'funding' => __DIR__ . '/resources/icons/funding',
|
||
'podcasting' => __DIR__ . '/resources/icons/podcasting',
|
||
'social' => __DIR__ . '/resources/icons/social',
|
||
])
|
||
->withDefaultIconPerSet([
|
||
'funding' => 'funding:default',
|
||
'podcasting' => 'podcasting:default',
|
||
'social' => 'social:default',
|
||
])
|
||
->withDefaultPrefix('ri')
|
||
->withPlaceholder('<27>');
|