mirror of
https://code.castopod.org/adaures/castopod
synced 2025-04-23 01:01:20 +00:00

- set and remove platform links for a podcast - remove unnecessary fields from platforms and platform_links tables - add platforms svg icons to show in form - update platform and auth seeders - update svgo config for images
75 lines
1.8 KiB
PHP
75 lines
1.8 KiB
PHP
<?php
|
|
|
|
/**
|
|
* @copyright 2020 Podlibre
|
|
* @license https://www.gnu.org/licenses/agpl-3.0.en.html AGPL3
|
|
* @link https://castopod.org/
|
|
*/
|
|
|
|
/**
|
|
* 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
|
|
* @return string svg contents
|
|
*/
|
|
function icon($name, $class = null)
|
|
{
|
|
$svg_contents = file_get_contents('assets/icons/' . $name . '.svg');
|
|
if ($class) {
|
|
$svg_contents = str_replace(
|
|
'<svg',
|
|
'<svg class="' . $class . '"',
|
|
$svg_contents
|
|
);
|
|
}
|
|
return $svg_contents;
|
|
}
|
|
|
|
/**
|
|
* Returns the inline svg image
|
|
*
|
|
* @param string $name name of the image file without the .svg extension
|
|
* @param string $class to be added to the svg string
|
|
* @return string svg contents
|
|
*/
|
|
function svg($name, $class = null)
|
|
{
|
|
$svg_contents = file_get_contents('assets/images/' . $name . '.svg');
|
|
if ($class) {
|
|
$svg_contents = str_replace(
|
|
'<svg',
|
|
'<svg class="' . $class . '"',
|
|
$svg_contents
|
|
);
|
|
}
|
|
return $svg_contents;
|
|
}
|
|
|
|
/**
|
|
* Returns the inline svg platform icon. Returns the default icon if not found.
|
|
*
|
|
* @param string $name name of the image file without the .svg extension
|
|
* @param string $class to be added to the svg string
|
|
* @return string svg contents
|
|
*/
|
|
function platform_icon($name, $class = null)
|
|
{
|
|
try {
|
|
$svg_contents = file_get_contents('assets/images/platforms/' . $name);
|
|
} catch (\Exception $e) {
|
|
$svg_contents = file_get_contents(
|
|
'assets/images/platforms/_default.svg'
|
|
);
|
|
}
|
|
|
|
if ($class) {
|
|
$svg_contents = str_replace(
|
|
'<svg',
|
|
'<svg class="' . $class . '"',
|
|
$svg_contents
|
|
);
|
|
}
|
|
return $svg_contents;
|
|
}
|