mirror of
https://code.castopod.org/adaures/castopod
synced 2025-04-23 01:01:20 +00:00
62 lines
1.6 KiB
PHP
62 lines
1.6 KiB
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
/**
|
|
* @copyright 2020 Ad Aures
|
|
* @license https://www.gnu.org/licenses/agpl-3.0.en.html AGPL3
|
|
* @link https://castopod.org/
|
|
*/
|
|
|
|
if (! function_exists('icon')) {
|
|
/**
|
|
* Returns the inline svg icon
|
|
*
|
|
* @param string $name name of the icon file without the .svg extension
|
|
* @param string $class to be added to the svg string
|
|
* @param string|null $type type of icon to be added
|
|
* @return string svg contents
|
|
*/
|
|
function icon(string $name, string $class = '', string $type = null): string
|
|
{
|
|
if ($type !== null) {
|
|
$name = $type . '/' . $name;
|
|
}
|
|
|
|
try {
|
|
$svgContents = file_get_contents('assets/icons/' . $name . '.svg');
|
|
} catch (Exception) {
|
|
if ($type !== null) {
|
|
return icon('default', $class, $type);
|
|
}
|
|
|
|
return '□';
|
|
}
|
|
|
|
if ($class !== '') {
|
|
return str_replace('<svg', '<svg class="' . $class . '"', $svgContents);
|
|
}
|
|
|
|
return $svgContents;
|
|
}
|
|
}
|
|
|
|
if (! function_exists('svg')) {
|
|
/**
|
|
* Returns the inline svg image
|
|
*
|
|
* @param string $name name of the image file without the .svg extension
|
|
* @param string|null $class to be added to the svg string
|
|
* @return string svg contents
|
|
*/
|
|
function svg(string $name, ?string $class = null): string
|
|
{
|
|
$svgContents = file_get_contents('assets/images/' . $name . '.svg');
|
|
if ($class) {
|
|
return str_replace('<svg', '<svg class="' . $class . '"', $svgContents);
|
|
}
|
|
|
|
return $svgContents;
|
|
}
|
|
}
|