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