Fatal error: Uncaught Error: Class "My\Icon" not found in /www/tpl.php...
use My\Icon;
$GLOBALS['messengers'] = [
[
'title' => 'Telegram',
'icon' => Icon::SVG( 'telegram' ),
]
//...
];
namespace My;
class Icon {
protected static array $icons = [
'telegram' => '<svg>...</svg>'
];
//...
}
require_once('path/to/My/Icon.php');