Lines Matching defs:icon
22 * Add icon
24 * @param string $icon Icon name or full path
31 public static function icon($icon, $class = null, $size = 24, $attrs = array())
33 // Find the icon, ensure it exists
34 if (file_exists($icon)) {
35 $file_path = $icon;
37 $file_path = self::$iconsPath . $icon . '.svg';
41 msg(sprintf('Unrecognized icon "%s" (svg file "%s" does not exist).', $icon, $file_path), -1);
51 msg(sprintf('"%s" could not be recognized as an icon file', $file_path), -1);