'➕', //✚ 'all' => '☰', 'bookmark' => '✨', //★ 'bookmark-add' => '➕', //✚ 'bookmark-tag' => '📑', 'category' => '🗂️', //☷ 'close' => '❌', 'configure' => '⚙️', 'debug' => '🐛', 'down' => '🔽', //▽ 'error' => '❌', 'favorite' => '⭐', //★ 'FreshRSS-logo' => '⊚', 'help' => 'ℹ️', //ⓘ 'icon' => '⊚', 'key' => '🔑', //⚿ 'label' => '🏷️', 'link' => '↗️', //↗ 'look' => '👀', //👁 'login' => '🔒', 'logout' => '🔓', 'next' => '⏩', 'non-starred' => '☆', 'notice' => 'ℹ️', //ⓘ 'prev' => '⏪', 'read' => '☑️', //☑ 'rss' => '📣', //☄ 'unread' => '🔲', //☐ 'refresh' => '🔃', //↻ 'search' => '🔍', 'share' => '♻️', //♺ 'sort-down' => '⬇️', //↓ 'sort-up' => '⬆️', //↑ 'starred' => '⭐', //★ 'stats' => '📈', //% 'tag' => '🔖', //⚐ 'up' => '🔼', //△ 'view-normal' => '📰', //☰ 'view-global' => '📖', //☷ 'view-reader' => '📜', 'warning' => '⚠️', //△ ); return isset($name) ? $alts[$name] : ''; } public static function icon($name, $urlOnly = false) { $alt = self::alt($name); if ($alt == '') { return ''; } $url = $name . '.svg'; $url = isset(self::$themeIcons[$url]) ? (self::$themeIconsUrl . $url) : (self::$defaultIconsUrl . $url); if ($urlOnly) { return Minz_Url::display($url); } if (FreshRSS_Context::$user_conf && FreshRSS_Context::$user_conf->icons_as_emojis) { return '' . $alt . ''; } return '' . $alt . ''; } }