mirror of
https://github.com/a2nt/silverstripe-font-awesome.git
synced 2024-10-22 17:05:51 +02:00
617 lines
25 KiB
PHP
617 lines
25 KiB
PHP
<?php
|
|
|
|
/**
|
|
* Class FontAwesome
|
|
*/
|
|
class FontAwesome
|
|
{
|
|
/**
|
|
* A list of all font-awesome classes as of 4.3.0
|
|
*
|
|
* @return array
|
|
*/
|
|
public static function getIcons()
|
|
{
|
|
$icons = array(
|
|
"fa-glass" => "glass",
|
|
"fa-music" => "music ",
|
|
"fa-search" => "search",
|
|
"fa-envelope-o" => "envelope-o",
|
|
"fa-heart" => "heart",
|
|
"fa-star" => "star",
|
|
"fa-star-o" => "star-o",
|
|
"fa-user" => "user",
|
|
"fa-film" => "film",
|
|
"fa-th-large" => "th-large",
|
|
"fa-th" => "th",
|
|
"fa-th-list" => "th-list",
|
|
"fa-check" => "check",
|
|
"fa-remove" => "remove",
|
|
"fa-close" => "close",
|
|
"fa-times" => "times",
|
|
"fa-search-plus" => "search-plus",
|
|
"fa-search-minus" => "search-minus",
|
|
"fa-power-off" => "power-off",
|
|
"fa-signal" => "signal",
|
|
"fa-gear" => "gear",
|
|
"fa-cog" => "cog",
|
|
"fa-trash-o" => "trash-o",
|
|
"fa-home" => "home",
|
|
"fa-file-o" => "file-o",
|
|
"fa-clock-o" => "clock-o",
|
|
"fa-road" => "road",
|
|
"fa-download" => "download",
|
|
"fa-arrow-circle-o-down" => "arrow-circle-o-down",
|
|
"fa-arrow-circle-o-up" => "arrow-circle-o-up",
|
|
"fa-inbox" => "inbox",
|
|
"fa-play-circle-o" => "play-circle-o",
|
|
"fa-rotate-right" => "rotate-right",
|
|
"fa-repeat" => "repeat",
|
|
"fa-refresh" => "refresh",
|
|
"fa-list-alt" => "list-alt",
|
|
"fa-lock" => "lock",
|
|
"fa-flag" => "flag",
|
|
"fa-headphones" => "headphones",
|
|
"fa-volume-off" => "volume-off",
|
|
"fa-volume-down" => "volume-down",
|
|
"fa-volume-up" => "volume-up",
|
|
"fa-qrcode" => "qrcode",
|
|
"fa-barcode" => "barcode",
|
|
"fa-tag" => "tag",
|
|
"fa-tags" => "tags",
|
|
"fa-book" => "book",
|
|
"fa-bookmark" => "bookmark",
|
|
"fa-print" => "print",
|
|
"fa-camera" => "camera",
|
|
"fa-font" => "font",
|
|
"fa-bold" => "bold",
|
|
"fa-italic" => "italic",
|
|
"fa-text-height" => "text-height",
|
|
"fa-text-width" => "text-width",
|
|
"fa-align-left" => "align-left",
|
|
"fa-align-center" => "align-center",
|
|
"fa-align-right" => "align-right",
|
|
"fa-align-justify" => "align-justify",
|
|
"fa-list" => "list",
|
|
"fa-dedent" => "dedent",
|
|
"fa-outdent" => "outdent",
|
|
"fa-indent" => "indent",
|
|
"fa-video-camera" => "video-camera",
|
|
"fa-photo" => "photo",
|
|
"fa-image" => "image",
|
|
"fa-picture-o" => "picture-o",
|
|
"fa-pencil" => "pencil",
|
|
"fa-map-marker" => "map-marker",
|
|
"fa-adjust" => "adjust",
|
|
"fa-tint" => "tint",
|
|
"fa-edit" => "edit",
|
|
"fa-pencil-square-o" => "pencil-square-o",
|
|
"fa-share-square-o" => "share-square-o",
|
|
"fa-check-square-o" => "check-square-o",
|
|
"fa-arrows" => "arrows",
|
|
"fa-step-backward" => "step-backward",
|
|
"fa-fast-backward" => "fast-backward",
|
|
"fa-backward" => "backward",
|
|
"fa-play" => "play",
|
|
"fa-pause" => "pause",
|
|
"fa-stop" => "stop",
|
|
"fa-forward" => "forward",
|
|
"fa-fast-forward" => "fast-forward",
|
|
"fa-step-forward" => "step-forward",
|
|
"fa-eject" => "eject",
|
|
"fa-chevron-left" => "chevron-left",
|
|
"fa-chevron-right" => "chevron-right",
|
|
"fa-plus-circle" => "plus-circle",
|
|
"fa-minus-circle" => "minus-circle",
|
|
"fa-times-circle" => "times-circle",
|
|
"fa-check-circle" => "check-circle",
|
|
"fa-question-circle" => "question-circle",
|
|
"fa-info-circle" => "info-circle",
|
|
"fa-crosshairs" => "crosshairs",
|
|
"fa-times-circle-o" => "times-circle-o",
|
|
"fa-check-circle-o" => "check-circle-o",
|
|
"fa-ban" => "ban",
|
|
"fa-arrow-left" => "arrow-left",
|
|
"fa-arrow-right" => "arrow-right",
|
|
"fa-arrow-up" => "arrow-up",
|
|
"fa-arrow-down" => "arrow-down",
|
|
"fa-mail-forward" => "mail-forward",
|
|
"fa-share" => "share",
|
|
"fa-expand" => "expand",
|
|
"fa-compress" => "compress",
|
|
"fa-plus" => "plus",
|
|
"fa-minus" => "minus",
|
|
"fa-asterisk" => "asterisk",
|
|
"fa-exclamation-circle" => "exclamation-circle",
|
|
"fa-gift" => "gift",
|
|
"fa-leaf" => "leaf",
|
|
"fa-fire" => "fire",
|
|
"fa-eye" => "eye",
|
|
"fa-eye-slash" => "eye-slash",
|
|
"fa-warning" => "warning",
|
|
"fa-exclamation-triangle" => "exclamation-triangle",
|
|
"fa-plane" => "plane",
|
|
"fa-calendar" => "calendar",
|
|
"fa-random" => "random",
|
|
"fa-comment" => "comment",
|
|
"fa-magnet" => "magnet",
|
|
"fa-chevron-up" => "chevron-up",
|
|
"fa-chevron-down" => "chevron-down",
|
|
"fa-retweet" => "retweet",
|
|
"fa-shopping-cart" => "shopping-cart",
|
|
"fa-folder" => "folder",
|
|
"fa-folder-open" => "folder-open",
|
|
"fa-arrows-" => "arrows-",
|
|
"fa-arrows-h" => "arrows-h",
|
|
"fa-bar-chart-o" => "bar-chart-o",
|
|
"fa-bar-chart" => "bar-chart",
|
|
"fa-twitter-square" => "twitter-square",
|
|
"fa-facebook-square" => "facebook-square",
|
|
"fa-camera-retro" => "camera-retro",
|
|
"fa-key" => "key",
|
|
"fa-gears" => "gears",
|
|
"fa-cogs" => "cogs",
|
|
"fa-comments" => "comments",
|
|
"fa-thumbs-o-up" => "thumbs-o-up",
|
|
"fa-thumbs-o-down" => "thumbs-o-down",
|
|
"fa-star-half" => "star-half",
|
|
"fa-heart-o" => "heart-o",
|
|
"fa-sign-out" => "sign-out",
|
|
"fa-linkedin-square" => "linkedin-square",
|
|
"fa-thumb-tack" => "thumb-tack",
|
|
"fa-external-link" => "external-link",
|
|
"fa-sign-in" => "sign-in",
|
|
"fa-trophy" => "trophy",
|
|
"fa-github-square" => "github-square",
|
|
"fa-upload" => "upload",
|
|
"fa-lemon-o" => "lemon-o",
|
|
"fa-phone" => "phone",
|
|
"fa-square-o" => "square-o",
|
|
"fa-bookmark-o" => "bookmark-o",
|
|
"fa-phone-square" => "phone-square",
|
|
"fa-twitter" => "twitter",
|
|
"fa-facebook-:before," => "facebook-:before,",
|
|
"fa-facebook" => "facebook",
|
|
"fa-github" => "github",
|
|
"fa-unlock" => "unlock",
|
|
"fa-credit-card" => "credit-card",
|
|
"fa-rss" => "rss",
|
|
"fa-hdd-o" => "hdd-o",
|
|
"fa-bullhorn" => "bullhorn",
|
|
"fa-bell" => "bell",
|
|
"fa-certificate" => "certificate",
|
|
"fa-hand-o-right" => "hand-o-right",
|
|
"fa-hand-o-left" => "hand-o-left",
|
|
"fa-hand-o-up" => "hand-o-up",
|
|
"fa-hand-o-down" => "hand-o-down",
|
|
"fa-arrow-circle-left" => "arrow-circle-left",
|
|
"fa-arrow-circle-right" => "arrow-circle-right",
|
|
"fa-arrow-circle-up" => "arrow-circle-up",
|
|
"fa-arrow-circle-down" => "arrow-circle-down",
|
|
"fa-globe" => "globe",
|
|
"fa-wrench" => "wrench",
|
|
"fa-tasks" => "tasks",
|
|
"fa-filter" => "filter",
|
|
"fa-briefcase" => "briefcase",
|
|
"fa-arrows-alt" => "arrows-alt",
|
|
"fa-group" => "group",
|
|
"fa-users" => "users",
|
|
"fa-chain" => "chain",
|
|
"fa-link" => "link",
|
|
"fa-cloud" => "cloud",
|
|
"fa-flask" => "flask",
|
|
"fa-cut" => "cut",
|
|
"fa-scissors" => "scissors",
|
|
"fa-copy" => "copy",
|
|
"fa-files-o" => "files-o",
|
|
"fa-paperclip" => "paperclip",
|
|
"fa-save" => "save",
|
|
"fa-floppy-o" => "floppy-o",
|
|
"fa-square" => "square",
|
|
"fa-navicon" => "navicon",
|
|
"fa-reorder" => "reorder",
|
|
"fa-bars" => "bars",
|
|
"fa-list-ul" => "list-ul",
|
|
"fa-list-ol" => "list-ol",
|
|
"fa-strikethrough" => "strikethrough",
|
|
"fa-underline" => "underline",
|
|
"fa-table" => "table",
|
|
"fa-magic" => "magic",
|
|
"fa-truck" => "truck",
|
|
"fa-pinterest" => "pinterest",
|
|
"fa-pinterest-square" => "pinterest-square",
|
|
"fa-google-plus-square" => "google-plus-square",
|
|
"fa-google-plus" => "google-plus",
|
|
"fa-money" => "money",
|
|
"fa-caret-down" => "caret-down",
|
|
"fa-caret-up" => "caret-up",
|
|
"fa-caret-left" => "caret-left",
|
|
"fa-caret-right" => "caret-right",
|
|
"fa-columns" => "columns",
|
|
"fa-unsorted" => "unsorted",
|
|
"fa-sort" => "sort",
|
|
"fa-sort-down" => "sort-down",
|
|
"fa-sort-desc" => "sort-desc",
|
|
"fa-sort-up" => "sort-up",
|
|
"fa-sort-asc" => "sort-asc",
|
|
"fa-envelope" => "envelope",
|
|
"fa-linkedin" => "linkedin",
|
|
"fa-rotate-left" => "rotate-left",
|
|
"fa-undo" => "undo",
|
|
"fa-legal" => "legal",
|
|
"fa-gavel" => "gavel",
|
|
"fa-dashboard" => "dashboard",
|
|
"fa-tachometer" => "tachometer",
|
|
"fa-comment-o" => "comment-o",
|
|
"fa-comments-o" => "comments-o",
|
|
"fa-flash" => "flash",
|
|
"fa-bolt" => "bolt",
|
|
"fa-sitemap" => "sitemap",
|
|
"fa-umbrella" => "umbrella",
|
|
"fa-paste" => "paste",
|
|
"fa-clipboard" => "clipboard",
|
|
"fa-lightbulb-o" => "lightbulb-o",
|
|
"fa-exchange" => "exchange",
|
|
"fa-cloud-download" => "cloud-download",
|
|
"fa-cloud-upload" => "cloud-upload",
|
|
"fa-user-md" => "user-md",
|
|
"fa-stethoscope" => "stethoscope",
|
|
"fa-suitcase" => "suitcase",
|
|
"fa-bell-o" => "bell-o",
|
|
"fa-coffee" => "coffee",
|
|
"fa-cutlery" => "cutlery",
|
|
"fa-file-text-o" => "file-text-o",
|
|
"fa-building-o" => "building-o",
|
|
"fa-hospital-o" => "hospital-o",
|
|
"fa-ambulance" => "ambulance",
|
|
"fa-medkit" => "medkit",
|
|
"fa-fighter-jet" => "fighter-jet",
|
|
"fa-beer" => "beer",
|
|
"fa-h-square" => "h-square",
|
|
"fa-plus-square" => "plus-square",
|
|
"fa-angle-double-left" => "angle-double-left",
|
|
"fa-angle-double-right" => "angle-double-right",
|
|
"fa-angle-double-up" => "angle-double-up",
|
|
"fa-angle-double-down" => "angle-double-down",
|
|
"fa-angle-left" => "angle-left",
|
|
"fa-angle-right" => "angle-right",
|
|
"fa-angle-up" => "angle-up",
|
|
"fa-angle-down" => "angle-down",
|
|
"fa-desktop" => "desktop",
|
|
"fa-laptop" => "laptop",
|
|
"fa-tablet" => "tablet",
|
|
"fa-mobile-phone" => "mobile-phone",
|
|
"fa-mobile" => "mobile",
|
|
"fa-circle-o" => "circle-o",
|
|
"fa-quote-left" => "quote-left",
|
|
"fa-quote-right" => "quote-right",
|
|
"fa-spinner" => "spinner",
|
|
"fa-circle" => "circle",
|
|
"fa-mail-reply" => "mail-reply",
|
|
"fa-reply" => "reply",
|
|
"fa-github-alt" => "github-alt",
|
|
"fa-folder-o" => "folder-o",
|
|
"fa-folder-open-o" => "folder-open-o",
|
|
"fa-smile-o" => "smile-o",
|
|
"fa-frown-o" => "frown-o",
|
|
"fa-meh-o" => "meh-o",
|
|
"fa-gamepad" => "gamepad",
|
|
"fa-keyboard-o" => "keyboard-o",
|
|
"fa-flag-o" => "flag-o",
|
|
"fa-flag-checkered" => "flag-checkered",
|
|
"fa-terminal" => "terminal",
|
|
"fa-code" => "code",
|
|
"fa-mail-reply-all" => "mail-reply-all",
|
|
"fa-reply-all" => "reply-all",
|
|
"fa-star-half-empty" => "star-half-empty",
|
|
"fa-star-half-full" => "star-half-full",
|
|
"fa-star-half-o" => "star-half-o",
|
|
"fa-location-arrow" => "location-arrow",
|
|
"fa-crop" => "crop",
|
|
"fa-code-fork" => "code-fork",
|
|
"fa-unlink" => "unlink",
|
|
"fa-chain-broken" => "chain-broken",
|
|
"fa-question" => "question",
|
|
"fa-info" => "info",
|
|
"fa-exclamation" => "exclamation",
|
|
"fa-superscript" => "superscript",
|
|
"fa-subscript" => "subscript",
|
|
"fa-eraser" => "eraser",
|
|
"fa-puzzle-piece" => "puzzle-piece",
|
|
"fa-microphone" => "microphone",
|
|
"fa-microphone-slash" => "microphone-slash",
|
|
"fa-shield" => "shield",
|
|
"fa-calendar-o" => "calendar-o",
|
|
"fa-fire-extinguisher" => "fire-extinguisher",
|
|
"fa-rocket" => "rocket",
|
|
"fa-maxcdn" => "maxcdn",
|
|
"fa-chevron-circle-left" => "chevron-circle-left",
|
|
"fa-chevron-circle-right" => "chevron-circle-right",
|
|
"fa-chevron-circle-up" => "chevron-circle-up",
|
|
"fa-chevron-circle-down" => "chevron-circle-down",
|
|
"fa-html" => "html",
|
|
"fa-css" => "css",
|
|
"fa-anchor" => "anchor",
|
|
"fa-unlock-alt" => "unlock-alt",
|
|
"fa-bullseye" => "bullseye",
|
|
"fa-ellipsis-h" => "ellipsis-h",
|
|
"fa-ellipsis-" => "ellipsis-",
|
|
"fa-rss-square" => "rss-square",
|
|
"fa-play-circle" => "play-circle",
|
|
"fa-ticket" => "ticket",
|
|
"fa-minus-square" => "minus-square",
|
|
"fa-minus-square-o" => "minus-square-o",
|
|
"fa-level-up" => "level-up",
|
|
"fa-level-down" => "level-down",
|
|
"fa-check-square" => "check-square",
|
|
"fa-pencil-square" => "pencil-square",
|
|
"fa-external-link-square" => "external-link-square",
|
|
"fa-share-square" => "share-square",
|
|
"fa-compass" => "compass",
|
|
"fa-toggle-down" => "toggle-down",
|
|
"fa-caret-square-o-down" => "caret-square-o-down",
|
|
"fa-toggle-up" => "toggle-up",
|
|
"fa-caret-square-o-up" => "caret-square-o-up",
|
|
"fa-toggle-right" => "toggle-right",
|
|
"fa-caret-square-o-right" => "caret-square-o-right",
|
|
"fa-euro" => "euro",
|
|
"fa-eur" => "eur",
|
|
"fa-gbp" => "gbp",
|
|
"fa-dollar" => "dollar",
|
|
"fa-usd" => "usd",
|
|
"fa-rupee" => "rupee",
|
|
"fa-inr" => "inr",
|
|
"fa-cny" => "cny",
|
|
"fa-rmb" => "rmb",
|
|
"fa-yen" => "yen",
|
|
"fa-jpy" => "jpy",
|
|
"fa-ruble" => "ruble",
|
|
"fa-rouble" => "rouble",
|
|
"fa-rub" => "rub",
|
|
"fa-won" => "won",
|
|
"fa-krw" => "krw",
|
|
"fa-bitcoin" => "bitcoin",
|
|
"fa-btc" => "btc",
|
|
"fa-file" => "file",
|
|
"fa-file-text" => "file-text",
|
|
"fa-sort-alpha-asc" => "sort-alpha-asc",
|
|
"fa-sort-alpha-desc" => "sort-alpha-desc",
|
|
"fa-sort-amount-asc" => "sort-amount-asc",
|
|
"fa-sort-amount-desc" => "sort-amount-desc",
|
|
"fa-sort-numeric-asc" => "sort-numeric-asc",
|
|
"fa-sort-numeric-desc" => "sort-numeric-desc",
|
|
"fa-thumbs-up" => "thumbs-up",
|
|
"fa-thumbs-down" => "thumbs-down",
|
|
"fa-youtube-square" => "youtube-square",
|
|
"fa-youtube" => "youtube",
|
|
"fa-xing" => "xing",
|
|
"fa-xing-square" => "xing-square",
|
|
"fa-youtube-play" => "youtube-play",
|
|
"fa-dropbox" => "dropbox",
|
|
"fa-stack-overflow" => "stack-overflow",
|
|
"fa-instagram" => "instagram",
|
|
"fa-flickr" => "flickr",
|
|
"fa-adn" => "adn",
|
|
"fa-bitbucket" => "bitbucket",
|
|
"fa-bitbucket-square" => "bitbucket-square",
|
|
"fa-tumblr" => "tumblr",
|
|
"fa-tumblr-square" => "tumblr-square",
|
|
"fa-long-arrow-down" => "long-arrow-down",
|
|
"fa-long-arrow-up" => "long-arrow-up",
|
|
"fa-long-arrow-left" => "long-arrow-left",
|
|
"fa-long-arrow-right" => "long-arrow-right",
|
|
"fa-apple" => "apple",
|
|
"fa-windows" => "windows",
|
|
"fa-android" => "android",
|
|
"fa-linux" => "linux",
|
|
"fa-dribbble" => "dribbble",
|
|
"fa-skype" => "skype",
|
|
"fa-foursquare" => "foursquare",
|
|
"fa-trello" => "trello",
|
|
"fa-female" => "female",
|
|
"fa-male" => "male",
|
|
"fa-gittip" => "gittip",
|
|
"fa-gratipay" => "gratipay",
|
|
"fa-sun-o" => "sun-o",
|
|
"fa-moon-o" => "moon-o",
|
|
"fa-archive" => "archive",
|
|
"fa-bug" => "bug",
|
|
"fa-vk" => "vk",
|
|
"fa-weibo" => "weibo",
|
|
"fa-renren" => "renren",
|
|
"fa-pagelines" => "pagelines",
|
|
"fa-stack-exchange" => "stack-exchange",
|
|
"fa-arrow-circle-o-right" => "arrow-circle-o-right",
|
|
"fa-arrow-circle-o-left" => "arrow-circle-o-left",
|
|
"fa-toggle-left" => "toggle-left",
|
|
"fa-caret-square-o-left" => "caret-square-o-left",
|
|
"fa-dot-circle-o" => "dot-circle-o",
|
|
"fa-wheelchair" => "wheelchair",
|
|
"fa-vimeo-square" => "vimeo-square",
|
|
"fa-turkish-lira" => "turkish-lira",
|
|
"fa-try" => "try",
|
|
"fa-plus-square-o" => "plus-square-o",
|
|
"fa-space-shuttle" => "space-shuttle",
|
|
"fa-slack" => "slack",
|
|
"fa-envelope-square" => "envelope-square",
|
|
"fa-wordpress" => "wordpress",
|
|
"fa-openid" => "openid",
|
|
"fa-institution" => "institution",
|
|
"fa-bank" => "bank",
|
|
"fa-university" => "university",
|
|
"fa-mortar-board" => "mortar-board",
|
|
"fa-graduation-cap" => "graduation-cap",
|
|
"fa-yahoo" => "yahoo",
|
|
"fa-google" => "google",
|
|
"fa-reddit" => "reddit",
|
|
"fa-reddit-square" => "reddit-square",
|
|
"fa-stumbleupon-circle" => "stumbleupon-circle",
|
|
"fa-stumbleupon" => "stumbleupon",
|
|
"fa-delicious" => "delicious",
|
|
"fa-digg" => "digg",
|
|
"fa-pied-piper" => "pied-piper",
|
|
"fa-pied-piper-alt" => "pied-piper-alt",
|
|
"fa-drupal" => "drupal",
|
|
"fa-joomla" => "joomla",
|
|
"fa-language" => "language",
|
|
"fa-fax" => "fax",
|
|
"fa-building" => "building",
|
|
"fa-child" => "child",
|
|
"fa-paw" => "paw",
|
|
"fa-spoon" => "spoon",
|
|
"fa-cube" => "cube",
|
|
"fa-cubes" => "cubes",
|
|
"fa-behance" => "behance",
|
|
"fa-behance-square" => "behance-square",
|
|
"fa-steam" => "steam",
|
|
"fa-steam-square" => "steam-square",
|
|
"fa-recycle" => "recycle",
|
|
"fa-automobile" => "automobile",
|
|
"fa-car" => "car",
|
|
"fa-cab" => "cab",
|
|
"fa-taxi" => "taxi",
|
|
"fa-tree" => "tree",
|
|
"fa-spotify" => "spotify",
|
|
"fa-deviantart" => "deviantart",
|
|
"fa-soundcloud" => "soundcloud",
|
|
"fa-database" => "database",
|
|
"fa-file-pdf-o" => "file-pdf-o",
|
|
"fa-file-word-o" => "file-word-o",
|
|
"fa-file-excel-o" => "file-excel-o",
|
|
"fa-file-powerpoint-o" => "file-powerpoint-o",
|
|
"fa-file-photo-o" => "file-photo-o",
|
|
"fa-file-picture-o" => "file-picture-o",
|
|
"fa-file-image-o" => "file-image-o",
|
|
"fa-file-zip-o" => "file-zip-o",
|
|
"fa-file-archive-o" => "file-archive-o",
|
|
"fa-file-sound-o" => "file-sound-o",
|
|
"fa-file-audio-o" => "file-audio-o",
|
|
"fa-file-movie-o" => "file-movie-o",
|
|
"fa-file-video-o" => "file-video-o",
|
|
"fa-file-code-o" => "file-code-o",
|
|
"fa-vine" => "vine",
|
|
"fa-codepen" => "codepen",
|
|
"fa-jsfiddle" => "jsfiddle",
|
|
"fa-life-bouy" => "life-bouy",
|
|
"fa-life-buoy" => "life-buoy",
|
|
"fa-life-saver" => "life-saver",
|
|
"fa-support" => "support",
|
|
"fa-life-ring" => "life-ring",
|
|
"fa-circle-o-notch" => "circle-o-notch",
|
|
"fa-ra" => "ra",
|
|
"fa-rebel" => "rebel",
|
|
"fa-ge" => "ge",
|
|
"fa-empire" => "empire",
|
|
"fa-git-square" => "git-square",
|
|
"fa-git" => "git",
|
|
"fa-hacker-news" => "hacker-news",
|
|
"fa-tencent-weibo" => "tencent-weibo",
|
|
"fa-qq" => "qq",
|
|
"fa-wechat" => "wechat",
|
|
"fa-weixin" => "weixin",
|
|
"fa-send" => "send",
|
|
"fa-paper-plane" => "paper-plane",
|
|
"fa-send-o" => "send-o",
|
|
"fa-paper-plane-o" => "paper-plane-o",
|
|
"fa-history" => "history",
|
|
"fa-genderless" => "genderless",
|
|
"fa-circle-thin" => "circle-thin",
|
|
"fa-header" => "header",
|
|
"fa-paragraph" => "paragraph",
|
|
"fa-sliders" => "sliders",
|
|
"fa-share-alt" => "share-alt",
|
|
"fa-share-alt-square" => "share-alt-square",
|
|
"fa-bomb" => "bomb",
|
|
"fa-soccer-ball-o" => "soccer-ball-o",
|
|
"fa-futbol-o" => "futbol-o",
|
|
"fa-tty" => "tty",
|
|
"fa-binoculars" => "binoculars",
|
|
"fa-plug" => "plug",
|
|
"fa-slideshare" => "slideshare",
|
|
"fa-twitch" => "twitch",
|
|
"fa-yelp" => "yelp",
|
|
"fa-newspaper-o" => "newspaper-o",
|
|
"fa-wifi" => "wifi",
|
|
"fa-calculator" => "calculator",
|
|
"fa-paypal" => "paypal",
|
|
"fa-google-wallet" => "google-wallet",
|
|
"fa-cc-visa" => "cc-visa",
|
|
"fa-cc-mastercard" => "cc-mastercard",
|
|
"fa-cc-discover" => "cc-discover",
|
|
"fa-cc-amex" => "cc-amex",
|
|
"fa-cc-paypal" => "cc-paypal",
|
|
"fa-cc-stripe" => "cc-stripe",
|
|
"fa-bell-slash" => "bell-slash",
|
|
"fa-bell-slash-o" => "bell-slash-o",
|
|
"fa-trash" => "trash",
|
|
"fa-copyright" => "copyright",
|
|
"fa-at" => "at",
|
|
"fa-eyedropper" => "eyedropper",
|
|
"fa-paint-brush" => "paint-brush",
|
|
"fa-birthday-cake" => "birthday-cake",
|
|
"fa-area-chart" => "area-chart",
|
|
"fa-pie-chart" => "pie-chart",
|
|
"fa-line-chart" => "line-chart",
|
|
"fa-lastfm" => "lastfm",
|
|
"fa-lastfm-square" => "lastfm-square",
|
|
"fa-toggle-off" => "toggle-off",
|
|
"fa-toggle-on" => "toggle-on",
|
|
"fa-bicycle" => "bicycle",
|
|
"fa-bus" => "bus",
|
|
"fa-ioxhost" => "ioxhost",
|
|
"fa-angellist" => "angellist",
|
|
"fa-cc" => "cc",
|
|
"fa-shekel" => "shekel",
|
|
"fa-sheqel" => "sheqel",
|
|
"fa-ils" => "ils",
|
|
"fa-meanpath" => "meanpath",
|
|
"fa-buysellads" => "buysellads",
|
|
"fa-connectdevelop" => "connectdevelop",
|
|
"fa-dashcube" => "dashcube",
|
|
"fa-forumbee" => "forumbee",
|
|
"fa-leanpub" => "leanpub",
|
|
"fa-sellsy" => "sellsy",
|
|
"fa-shirtsinbulk" => "shirtsinbulk",
|
|
"fa-simplybuilt" => "simplybuilt",
|
|
"fa-skyatlas" => "skyatlas",
|
|
"fa-cart-plus" => "cart-plus",
|
|
"fa-cart-arrow-down" => "cart-arrow-down",
|
|
"fa-diamond" => "diamond",
|
|
"fa-ship" => "ship",
|
|
"fa-user-secret" => "user-secret",
|
|
"fa-motorcycle" => "motorcycle",
|
|
"fa-street-view" => "street-view",
|
|
"fa-heartbeat" => "heartbeat",
|
|
"fa-venus" => "venus",
|
|
"fa-mars" => "mars",
|
|
"fa-mercury" => "mercury",
|
|
"fa-transgender" => "transgender",
|
|
"fa-transgender-alt" => "transgender-alt",
|
|
"fa-venus-double" => "venus-double",
|
|
"fa-mars-double" => "mars-double",
|
|
"fa-venus-mars" => "venus-mars",
|
|
"fa-mars-stroke" => "mars-stroke",
|
|
"fa-mars-stroke-" => "mars-stroke-",
|
|
"fa-mars-stroke-h" => "mars-stroke-h",
|
|
"fa-neuter" => "neuter",
|
|
"fa-facebook-official" => "facebook-official",
|
|
"fa-pinterest-p" => "pinterest-p",
|
|
"fa-whatsapp" => "whatsapp",
|
|
"fa-server" => "server",
|
|
"fa-user-plus" => "user-plus",
|
|
"fa-user-times" => "user-times",
|
|
"fa-hotel" => "hotel",
|
|
"fa-bed" => "bed",
|
|
"fa-viacoin" => "viacoin",
|
|
"fa-train" => "train",
|
|
"fa-subway" => "subway",
|
|
"fa-medium" => "medium",
|
|
);
|
|
|
|
asort($icons);
|
|
|
|
return $icons;
|
|
|
|
}
|
|
}
|