library
11 years ago
admin.php
11 years ago
media-template.php
11 years ago
settings.php
11 years ago
type-dashicons.php
11 years ago
type-elusive.php
11 years ago
type-fontawesome.php
11 years ago
type-fontpack.php
11 years ago
type-fonts.php
11 years ago
type-foundation.php
11 years ago
type-genericons.php
11 years ago
type-image.php
11 years ago
type.php
11 years ago
walker-nav-menu-edit.php
11 years ago
type-foundation.php
428 lines
| 1 | <?php |
| 2 | /** |
| 3 | * Foundation Icons |
| 4 | * |
| 5 | * @package Menu_Icons |
| 6 | * @author Dzikri Aziz <kvcrvt@gmail.com> |
| 7 | */ |
| 8 | |
| 9 | |
| 10 | require_once dirname( __FILE__ ) . '/type-fonts.php'; |
| 11 | |
| 12 | /** |
| 13 | * Icon type: Foundation Icons |
| 14 | * |
| 15 | * @since 0.5.0 |
| 16 | * @version 0.1.0 |
| 17 | */ |
| 18 | class Menu_Icons_Type_Foundation extends Menu_Icons_Type_Fonts { |
| 19 | |
| 20 | /** |
| 21 | * Holds icon type |
| 22 | * |
| 23 | * @since 0.1.0 |
| 24 | * @access protected |
| 25 | * @var string |
| 26 | */ |
| 27 | protected $type = 'foundation-icons'; |
| 28 | |
| 29 | /** |
| 30 | * Holds icon label |
| 31 | * |
| 32 | * @since 0.1.0 |
| 33 | * @access protected |
| 34 | * @var string |
| 35 | */ |
| 36 | protected $label = 'Foundation'; |
| 37 | |
| 38 | /** |
| 39 | * Holds icon version |
| 40 | * |
| 41 | * @since 0.1.0 |
| 42 | * @access protected |
| 43 | * @var string |
| 44 | */ |
| 45 | protected $version = '3.0'; |
| 46 | |
| 47 | |
| 48 | /** |
| 49 | * Class constructor |
| 50 | * |
| 51 | * We need to override the parent's to set our stylesheet URL |
| 52 | * |
| 53 | * @since 0.1.0 |
| 54 | * @param array $types Icon Types |
| 55 | * @return array |
| 56 | */ |
| 57 | public function __construct() { |
| 58 | $this->stylesheet = sprintf( |
| 59 | '%scss/%s%s.css', |
| 60 | Menu_Icons::get( 'url' ), |
| 61 | $this->type, |
| 62 | Menu_Icons::get_script_suffix() |
| 63 | ); |
| 64 | |
| 65 | parent::__construct(); |
| 66 | } |
| 67 | |
| 68 | |
| 69 | /** |
| 70 | * Foundation's icons names |
| 71 | * |
| 72 | * @since 0.1.0 |
| 73 | * @return array |
| 74 | */ |
| 75 | public function get_names() { |
| 76 | return array( |
| 77 | array( |
| 78 | 'key' => 'accessibility', |
| 79 | 'label' => __( 'Accessibility', 'menu-icons' ), |
| 80 | 'items' => array( |
| 81 | 'fi-asl' => __( 'ASL', 'menu-icons' ), |
| 82 | 'fi-blind' => __( 'Blind', 'menu-icons' ), |
| 83 | 'fi-braille' => __( 'Braille', 'menu-icons' ), |
| 84 | 'fi-closed-caption' => __( 'Closed Caption', 'menu-icons' ), |
| 85 | 'fi-elevator' => __( 'Elevator', 'menu-icons' ), |
| 86 | 'fi-guide-dog' => __( 'Guide Dog', 'menu-icons' ), |
| 87 | 'fi-hearing-aid' => __( 'Hearing Aid', 'menu-icons' ), |
| 88 | 'fi-universal-access' => __( 'Universal Access', 'menu-icons' ), |
| 89 | 'fi-male' => __( 'Male', 'menu-icons' ), |
| 90 | 'fi-female' => __( 'Female', 'menu-icons' ), |
| 91 | 'fi-male-female' => __( 'Male & Female', 'menu-icons' ), |
| 92 | 'fi-male-symbol' => __( 'Male Symbol', 'menu-icons' ), |
| 93 | 'fi-female-symbol' => __( 'Female Symbol', 'menu-icons' ), |
| 94 | 'fi-wheelchair' => __( 'Wheelchair', 'menu-icons' ), |
| 95 | ), |
| 96 | ), |
| 97 | array( |
| 98 | 'key' => 'arrows', |
| 99 | 'label' => __( 'Arrows', 'menu-icons' ), |
| 100 | 'items' => array( |
| 101 | 'fi-arrow-up' => __( 'Arrow: Up', 'menu-icons' ), |
| 102 | 'fi-arrow-down' => __( 'Arrow: Down', 'menu-icons' ), |
| 103 | 'fi-arrow-left' => __( 'Arrow: Left', 'menu-icons' ), |
| 104 | 'fi-arrow-right' => __( 'Arrow: Right', 'menu-icons' ), |
| 105 | 'fi-arrows-out' => __( 'Arrows: Out', 'menu-icons' ), |
| 106 | 'fi-arrows-in' => __( 'Arrows: In', 'menu-icons' ), |
| 107 | 'fi-arrows-expand' => __( 'Arrows: Expand', 'menu-icons' ), |
| 108 | 'fi-arrows-compress' => __( 'Arrows: Compress', 'menu-icons' ), |
| 109 | ), |
| 110 | ), |
| 111 | array( |
| 112 | 'key' => 'devices', |
| 113 | 'label' => __( 'Devices', 'menu-icons' ), |
| 114 | 'items' => array( |
| 115 | 'fi-bluetooth' => __( 'Bluetooth', 'menu-icons' ), |
| 116 | 'fi-camera' => __( 'Camera', 'menu-icons' ), |
| 117 | 'fi-compass' => __( 'Compass', 'menu-icons' ), |
| 118 | 'fi-laptop' => __( 'Laptop', 'menu-icons' ), |
| 119 | 'fi-megaphone' => __( 'Megaphone', 'menu-icons' ), |
| 120 | 'fi-microphone' => __( 'Microphone', 'menu-icons' ), |
| 121 | 'fi-mobile' => __( 'Mobile', 'menu-icons' ), |
| 122 | 'fi-mobile-signal' => __( 'Mobile Signal', 'menu-icons' ), |
| 123 | 'fi-monitor' => __( 'Monitor', 'menu-icons' ), |
| 124 | 'fi-tablet-portrait' => __( 'Tablet: Portrait', 'menu-icons' ), |
| 125 | 'fi-tablet-landscape' => __( 'Tablet: Landscape', 'menu-icons' ), |
| 126 | 'fi-telephone' => __( 'Telephone', 'menu-icons' ), |
| 127 | 'fi-usb' => __( 'USB', 'menu-icons' ), |
| 128 | 'fi-video' => __( 'Video', 'menu-icons' ), |
| 129 | ), |
| 130 | ), |
| 131 | array( |
| 132 | 'key' => 'ecommerce', |
| 133 | 'label' => __( 'Ecommerce', 'menu-icons' ), |
| 134 | 'items' => array( |
| 135 | 'fi-bitcoin' => __( 'Bitcoin', 'menu-icons' ), |
| 136 | 'fi-bitcoin-circle' => __( 'Bitcoin', 'menu-icons' ), |
| 137 | 'fi-dollar' => __( 'Dollar', 'menu-icons' ), |
| 138 | 'fi-euro' => __( 'EURO', 'menu-icons' ), |
| 139 | 'fi-pound' => __( 'Pound', 'menu-icons' ), |
| 140 | 'fi-yen' => __( 'Yen', 'menu-icons' ), |
| 141 | 'fi-burst' => __( 'Burst', 'menu-icons' ), |
| 142 | 'fi-burst-new' => __( 'Burst: New', 'menu-icons' ), |
| 143 | 'fi-burst-sale' => __( 'Burst: Sale', 'menu-icons' ), |
| 144 | 'fi-credit-card' => __( 'Credit Card', 'menu-icons' ), |
| 145 | 'fi-dollar-bill' => __( 'Dollar Bill', 'menu-icons' ), |
| 146 | 'fi-paypal' => 'PayPal', |
| 147 | 'fi-price-tag' => __( 'Price Tag', 'menu-icons' ), |
| 148 | 'fi-pricetag-multiple' => __( 'Price Tag: Multiple', 'menu-icons' ), |
| 149 | 'fi-shopping-bag' => __( 'Shopping Bag', 'menu-icons' ), |
| 150 | 'fi-shopping-cart' => __( 'Shopping Cart', 'menu-icons' ), |
| 151 | ), |
| 152 | ), |
| 153 | array( |
| 154 | 'key' => 'editor', |
| 155 | 'label' => __( 'Editor', 'menu-icons' ), |
| 156 | 'items' => array( |
| 157 | 'fi-bold' => __( 'Bold', 'menu-icons' ), |
| 158 | 'fi-italic' => __( 'Italic', 'menu-icons' ), |
| 159 | 'fi-underline' => __( 'Underline', 'menu-icons' ), |
| 160 | 'fi-strikethrough' => __( 'Strikethrough', 'menu-icons' ), |
| 161 | 'fi-text-color' => __( 'Text Color', 'menu-icons' ), |
| 162 | 'fi-background-color' => __( 'Background Color', 'menu-icons' ), |
| 163 | 'fi-superscript' => __( 'Superscript', 'menu-icons' ), |
| 164 | 'fi-subscript' => __( 'Subscript', 'menu-icons' ), |
| 165 | 'fi-align-left' => __( 'Align Left', 'menu-icons' ), |
| 166 | 'fi-align-center' => __( 'Align Center', 'menu-icons' ), |
| 167 | 'fi-align-right' => __( 'Align Right', 'menu-icons' ), |
| 168 | 'fi-align-justify' => __( 'Justify', 'menu-icons' ), |
| 169 | 'fi-list-number' => __( 'List: Number', 'menu-icons' ), |
| 170 | 'fi-list-bullet' => __( 'List: Bullet', 'menu-icons' ), |
| 171 | 'fi-indent-more' => __( 'Indent', 'menu-icons' ), |
| 172 | 'fi-indent-less' => __( 'Outdent', 'menu-icons' ), |
| 173 | 'fi-page-add' => __( 'Add Page', 'menu-icons' ), |
| 174 | 'fi-page-copy' => __( 'Copy Page', 'menu-icons' ), |
| 175 | 'fi-page-multiple' => __( 'Duplicate Page', 'menu-icons' ), |
| 176 | 'fi-page-delete' => __( 'Delete Page', 'menu-icons' ), |
| 177 | 'fi-page-remove' => __( 'Remove Page', 'menu-icons' ), |
| 178 | 'fi-page-edit' => __( 'Edit Page', 'menu-icons' ), |
| 179 | 'fi-page-export' => __( 'Export', 'menu-icons' ), |
| 180 | 'fi-page-export-csv' => __( 'Export to CSV', 'menu-icons' ), |
| 181 | 'fi-page-export-pdf' => __( 'Export to PDF', 'menu-icons' ), |
| 182 | 'fi-page-filled' => __( 'Fill Page', 'menu-icons' ), |
| 183 | 'fi-crop' => __( 'Crop', 'menu-icons' ), |
| 184 | 'fi-filter' => __( 'Filter', 'menu-icons' ), |
| 185 | 'fi-paint-bucket' => __( 'Paint Bucket', 'menu-icons' ), |
| 186 | 'fi-photo' => __( 'Photo', 'menu-icons' ), |
| 187 | 'fi-print' => __( 'Print', 'menu-icons' ), |
| 188 | 'fi-save' => __( 'Save', 'menu-icons' ), |
| 189 | 'fi-link' => __( 'Link', 'menu-icons' ), |
| 190 | 'fi-unlink' => __( 'Unlink', 'menu-icons' ), |
| 191 | 'fi-quote' => __( 'Quote', 'menu-icons' ), |
| 192 | 'fi-page-search' => __( 'Search in Page', 'menu-icons' ), |
| 193 | ), |
| 194 | ), |
| 195 | array( |
| 196 | 'key' => 'file-types', |
| 197 | 'label' => __( 'File Types', 'menu-icons' ), |
| 198 | 'items' => array( |
| 199 | 'fi-page' => __( 'File', 'menu-icons' ), |
| 200 | 'fi-page-csv' => __( 'CSV', 'menu-icons' ), |
| 201 | 'fi-page-doc' => __( 'Doc', 'menu-icons' ), |
| 202 | 'fi-page-pdf' => __( 'PDF', 'menu-icons' ), |
| 203 | ), |
| 204 | ), |
| 205 | array( |
| 206 | 'key' => 'general', |
| 207 | 'label' => __( 'General', 'menu-icons' ), |
| 208 | 'items' => array( |
| 209 | 'fi-address-book' => __( 'Addressbook', 'menu-icons' ), |
| 210 | 'fi-alert' => __( 'Alert', 'menu-icons' ), |
| 211 | 'fi-annotate' => __( 'Annotate', 'menu-icons' ), |
| 212 | 'fi-archive' => __( 'Archive', 'menu-icons' ), |
| 213 | 'fi-bookmark' => __( 'Bookmark', 'menu-icons' ), |
| 214 | 'fi-calendar' => __( 'Calendar', 'menu-icons' ), |
| 215 | 'fi-clock' => __( 'Clock', 'menu-icons' ), |
| 216 | 'fi-cloud' => __( 'Cloud', 'menu-icons' ), |
| 217 | 'fi-comment' => __( 'Comment', 'menu-icons' ), |
| 218 | 'fi-comment-minus' => __( 'Comment: Minus', 'menu-icons' ), |
| 219 | 'fi-comment-quotes' => __( 'Comment: Quotes', 'menu-icons' ), |
| 220 | 'fi-comment-video' => __( 'Comment: Video', 'menu-icons' ), |
| 221 | 'fi-comments' => __( 'Comments', 'menu-icons' ), |
| 222 | 'fi-contrast' => __( 'Contrast', 'menu-icons' ), |
| 223 | 'fi-database' => __( 'Database', 'menu-icons' ), |
| 224 | 'fi-folder' => __( 'Folder', 'menu-icons' ), |
| 225 | 'fi-folder-add' => __( 'Folder: Add', 'menu-icons' ), |
| 226 | 'fi-folder-lock' => __( 'Folder: Lock', 'menu-icons' ), |
| 227 | 'fi-eye' => __( 'Eye', 'menu-icons' ), |
| 228 | 'fi-heart' => __( 'Heart', 'menu-icons' ), |
| 229 | 'fi-plus' => __( 'Plus', 'menu-icons' ), |
| 230 | 'fi-minus' => __( 'Minus', 'menu-icons' ), |
| 231 | 'fi-minus-circle' => __( 'Minus', 'menu-icons' ), |
| 232 | 'fi-x' => __( 'X', 'menu-icons' ), |
| 233 | 'fi-x-circle' => __( 'X', 'menu-icons' ), |
| 234 | 'fi-check' => __( 'Check', 'menu-icons' ), |
| 235 | 'fi-checkbox' => __( 'Check', 'menu-icons' ), |
| 236 | 'fi-download' => __( 'Download', 'menu-icons' ), |
| 237 | 'fi-upload' => __( 'Upload', 'menu-icons' ), |
| 238 | 'fi-upload-cloud' => __( 'Upload to Cloud', 'menu-icons' ), |
| 239 | 'fi-flag' => __( 'Flag', 'menu-icons' ), |
| 240 | 'fi-foundation' => __( 'Foundation', 'menu-icons' ), |
| 241 | 'fi-graph-bar' => __( 'Graph: Bar', 'menu-icons' ), |
| 242 | 'fi-graph-horizontal' => __( 'Graph: Horizontal', 'menu-icons' ), |
| 243 | 'fi-graph-pie' => __( 'Graph: Pie', 'menu-icons' ), |
| 244 | 'fi-graph-trend' => __( 'Graph: Trend', 'menu-icons' ), |
| 245 | 'fi-home' => __( 'Home', 'menu-icons' ), |
| 246 | 'fi-layout' => __( 'Layout', 'menu-icons' ), |
| 247 | 'fi-like' => __( 'Like', 'menu-icons' ), |
| 248 | 'fi-dislike' => __( 'Dislike', 'menu-icons' ), |
| 249 | 'fi-list' => __( 'List', 'menu-icons' ), |
| 250 | 'fi-list-thumbnails' => __( 'List: Thumbnails', 'menu-icons' ), |
| 251 | 'fi-lock' => __( 'Lock', 'menu-icons' ), |
| 252 | 'fi-unlock' => __( 'Unlock', 'menu-icons' ), |
| 253 | 'fi-marker' => __( 'Marker', 'menu-icons' ), |
| 254 | 'fi-magnifying-glass' => __( 'Magnifying Glass', 'menu-icons' ), |
| 255 | 'fi-refresh' => __( 'Refresh', 'menu-icons' ), |
| 256 | 'fi-paperclip' => __( 'Paperclip', 'menu-icons' ), |
| 257 | 'fi-pencil' => __( 'Pencil', 'menu-icons' ), |
| 258 | 'fi-play-video' => __( 'Play Video', 'menu-icons' ), |
| 259 | 'fi-results' => __( 'Results', 'menu-icons' ), |
| 260 | 'fi-results-demographics' => __( 'Results: Demographics', 'menu-icons' ), |
| 261 | 'fi-rss' => __( 'RSS', 'menu-icons' ), |
| 262 | 'fi-share' => __( 'Share', 'menu-icons' ), |
| 263 | 'fi-sound' => __( 'Sound', 'menu-icons' ), |
| 264 | 'fi-star' => __( 'Star', 'menu-icons' ), |
| 265 | 'fi-thumbnails' => __( 'Thumbnails', 'menu-icons' ), |
| 266 | 'fi-trash' => __( 'Trash', 'menu-icons' ), |
| 267 | 'fi-web' => __( 'Web', 'menu-icons' ), |
| 268 | 'fi-widget' => __( 'Widget', 'menu-icons' ), |
| 269 | 'fi-wrench' => __( 'Wrench', 'menu-icons' ), |
| 270 | 'fi-zoom-out' => __( 'Zoom Out', 'menu-icons' ), |
| 271 | 'fi-zoom-in' => __( 'Zoom In', 'menu-icons' ), |
| 272 | ), |
| 273 | ), |
| 274 | array( |
| 275 | 'key' => 'media-control', |
| 276 | 'label' => __( 'Media Controls', 'menu-icons' ), |
| 277 | 'items' => array( |
| 278 | 'fi-record' => __( 'Record', 'menu-icons' ), |
| 279 | 'fi-play-circle' => __( 'Play', 'menu-icons' ), |
| 280 | 'fi-play' => __( 'Play', 'menu-icons' ), |
| 281 | 'fi-pause' => __( 'Pause', 'menu-icons' ), |
| 282 | 'fi-stop' => __( 'Stop', 'menu-icons' ), |
| 283 | 'fi-previous' => __( 'Previous', 'menu-icons' ), |
| 284 | 'fi-rewind' => __( 'Rewind', 'menu-icons' ), |
| 285 | 'fi-fast-forward' => __( 'Fast Forward', 'menu-icons' ), |
| 286 | 'fi-next' => __( 'Next', 'menu-icons' ), |
| 287 | 'fi-next' => __( 'Next', 'menu-icons' ), |
| 288 | 'fi-volume' => __( 'Volume', 'menu-icons' ), |
| 289 | 'fi-volume-none' => __( 'Volume: Low', 'menu-icons' ), |
| 290 | 'fi-volume-strike' => __( 'Volume: Mute', 'menu-icons' ), |
| 291 | 'fi-loop' => __( 'Loop', 'menu-icons' ), |
| 292 | 'fi-shuffle' => __( 'Shuffle', 'menu-icons' ), |
| 293 | 'fi-eject' => __( 'Eject', 'menu-icons' ), |
| 294 | 'fi-rewind-ten' => __( 'Rewind 10', 'menu-icons' ), |
| 295 | ), |
| 296 | ), |
| 297 | array( |
| 298 | 'key' => 'misc', |
| 299 | 'label' => __( 'Miscellaneous', 'menu-icons' ), |
| 300 | 'items' => array( |
| 301 | 'fi-anchor' => __( 'Anchor', 'menu-icons' ), |
| 302 | 'fi-asterisk' => __( 'Asterisk', 'menu-icons' ), |
| 303 | 'fi-at-sign' => __( '@', 'menu-icons' ), |
| 304 | 'fi-battery-full' => __( 'Battery: Full', 'menu-icons' ), |
| 305 | 'fi-battery-half' => __( 'Battery: Half', 'menu-icons' ), |
| 306 | 'fi-battery-empty' => __( 'Battery: Empty', 'menu-icons' ), |
| 307 | 'fi-book' => __( 'Book', 'menu-icons' ), |
| 308 | 'fi-book-bookmark' => __( 'Bookmark', 'menu-icons' ), |
| 309 | 'fi-clipboard' => __( 'Clipboard', 'menu-icons' ), |
| 310 | 'fi-clipboard-pencil' => __( 'Clipboard: Pencil', 'menu-icons' ), |
| 311 | 'fi-clipboard-notes' => __( 'Clipboard: Notes', 'menu-icons' ), |
| 312 | 'fi-clipboard' => __( 'Clipboard', 'menu-icons' ), |
| 313 | 'fi-crown' => __( 'Crown', 'menu-icons' ), |
| 314 | 'fi-die-one' => __( 'Dice: 1', 'menu-icons' ), |
| 315 | 'fi-die-two' => __( 'Dice: 2', 'menu-icons' ), |
| 316 | 'fi-die-three' => __( 'Dice: 3', 'menu-icons' ), |
| 317 | 'fi-die-four' => __( 'Dice: 4', 'menu-icons' ), |
| 318 | 'fi-die-five' => __( 'Dice: 5', 'menu-icons' ), |
| 319 | 'fi-die-six' => __( 'Dice: 6', 'menu-icons' ), |
| 320 | 'fi-safety-cone' => __( 'Cone', 'menu-icons' ), |
| 321 | 'fi-first-aid' => __( 'Firs Aid', 'menu-icons' ), |
| 322 | 'fi-foot' => __( 'Foot', 'menu-icons' ), |
| 323 | 'fi-info' => __( 'Info', 'menu-icons' ), |
| 324 | 'fi-key' => __( 'Key', 'menu-icons' ), |
| 325 | 'fi-lightbulb' => __( 'Lightbulb', 'menu-icons' ), |
| 326 | 'fi-map' => __( 'Map', 'menu-icons' ), |
| 327 | 'fi-mountains' => __( 'Mountains', 'menu-icons' ), |
| 328 | 'fi-music' => __( 'Music', 'menu-icons' ), |
| 329 | 'fi-no-dogs' => __( 'No Dogs', 'menu-icons' ), |
| 330 | 'fi-no-smoking' => __( 'No Smoking', 'menu-icons' ), |
| 331 | 'fi-paw' => __( 'Paw', 'menu-icons' ), |
| 332 | 'fi-power' => __( 'Power', 'menu-icons' ), |
| 333 | 'fi-prohibited' => __( 'Prohibited', 'menu-icons' ), |
| 334 | 'fi-projection-screen' => __( 'Projection Screen', 'menu-icons' ), |
| 335 | 'fi-puzzle' => __( 'Puzzle', 'menu-icons' ), |
| 336 | 'fi-sheriff-badge' => __( 'Sheriff Badge', 'menu-icons' ), |
| 337 | 'fi-shield' => __( 'Shield', 'menu-icons' ), |
| 338 | 'fi-skull' => __( 'Skull', 'menu-icons' ), |
| 339 | 'fi-target' => __( 'Target', 'menu-icons' ), |
| 340 | 'fi-target-two' => __( 'Target', 'menu-icons' ), |
| 341 | 'fi-ticket' => __( 'Ticket', 'menu-icons' ), |
| 342 | 'fi-trees' => __( 'Trees', 'menu-icons' ), |
| 343 | 'fi-trophy' => __( 'Trophy', 'menu-icons' ), |
| 344 | ), |
| 345 | ), |
| 346 | array( |
| 347 | 'key' => 'people', |
| 348 | 'label' => __( 'People', 'menu-icons' ), |
| 349 | 'items' => array( |
| 350 | 'fi-torso' => __( 'Torso', 'menu-icons' ), |
| 351 | 'fi-torso-business' => __( 'Torso: Business', 'menu-icons' ), |
| 352 | 'fi-torso-female' => __( 'Torso: Female', 'menu-icons' ), |
| 353 | 'fi-torsos' => __( 'Torsos', 'menu-icons' ), |
| 354 | 'fi-torsos-all' => __( 'Torsos: All', 'menu-icons' ), |
| 355 | 'fi-torsos-all-female' => __( 'Torsos: All Female', 'menu-icons' ), |
| 356 | 'fi-torsos-male-female' => __( 'Torsos: Male & Female', 'menu-icons' ), |
| 357 | 'fi-torsos-female-male' => __( 'Torsos: Female & Male', 'menu-icons' ), |
| 358 | ), |
| 359 | ), |
| 360 | array( |
| 361 | 'key' => 'social', |
| 362 | 'label' => __( 'Social/Brand', 'menu-icons' ), |
| 363 | 'items' => array( |
| 364 | 'fi-social-500px' => '500px', |
| 365 | 'fi-social-adobe' => 'Adobe', |
| 366 | 'fi-social-amazon' => 'Amazon', |
| 367 | 'fi-social-android' => 'Android', |
| 368 | 'fi-social-apple' => 'Apple', |
| 369 | 'fi-social-behance' => 'Behance', |
| 370 | 'fi-social-bing' => 'bing', |
| 371 | 'fi-social-blogger' => 'Blogger', |
| 372 | 'fi-css3' => 'CSS3', |
| 373 | 'fi-social-delicious' => 'Delicious', |
| 374 | 'fi-social-designer-news' => 'Designer News', |
| 375 | 'fi-social-deviant-art' => 'deviantArt', |
| 376 | 'fi-social-deviant-art' => 'deviantArt', |
| 377 | 'fi-social-digg' => 'Digg', |
| 378 | 'fi-social-dribbble' => 'dribbble', |
| 379 | 'fi-social-drive' => 'Drive', |
| 380 | 'fi-social-dropbox' => 'DropBox', |
| 381 | 'fi-social-evernote' => 'Evernote', |
| 382 | 'fi-social-facebook' => 'Facebook', |
| 383 | 'fi-social-flickr' => 'flickr', |
| 384 | 'fi-social-forrst' => 'forrst', |
| 385 | 'fi-social-foursquare' => 'Foursquare', |
| 386 | 'fi-social-game-center' => 'Game Center', |
| 387 | 'fi-social-github' => 'GitHub', |
| 388 | 'fi-social-google-plus' => 'Google+', |
| 389 | 'fi-social-hacker-news' => 'Hacker News', |
| 390 | 'fi-social-hi5' => 'hi5', |
| 391 | 'fi-html5' => 'HTML5', |
| 392 | 'fi-social-instagram' => 'Instagram', |
| 393 | 'fi-social-joomla' => 'Joomla!', |
| 394 | 'fi-social-lastfm' => 'last.fm', |
| 395 | 'fi-social-linkedin' => 'LinkedIn', |
| 396 | 'fi-social-medium' => 'Medium', |
| 397 | 'fi-social-myspace' => 'My Space', |
| 398 | 'fi-social-orkut' => 'Orkut', |
| 399 | 'fi-social-path' => 'path', |
| 400 | 'fi-social-picasa' => 'Picasa', |
| 401 | 'fi-social-pinterest' => 'Pinterest', |
| 402 | 'fi-social-rdio' => 'rdio', |
| 403 | 'fi-social-reddit' => 'reddit', |
| 404 | 'fi-social-skype' => 'Skype', |
| 405 | 'fi-social-skillshare' => 'SkillShare', |
| 406 | 'fi-social-smashing-mag' => 'Smashing Mag.', |
| 407 | 'fi-social-snapchat' => 'Snapchat', |
| 408 | 'fi-social-spotify' => 'Spotify', |
| 409 | 'fi-social-squidoo' => 'Squidoo', |
| 410 | 'fi-social-stack-overflow' => 'StackOverflow', |
| 411 | 'fi-social-steam' => 'Steam', |
| 412 | 'fi-social-stumbleupon' => 'StumbleUpon', |
| 413 | 'fi-social-treehouse' => 'TreeHouse', |
| 414 | 'fi-social-tumblr' => 'Tumblr', |
| 415 | 'fi-social-twitter' => 'Twitter', |
| 416 | 'fi-social-windows' => 'Windows', |
| 417 | 'fi-social-xbox' => 'XBox', |
| 418 | 'fi-social-yahoo' => 'Yahoo!', |
| 419 | 'fi-social-yelp' => 'Yelp', |
| 420 | 'fi-social-youtube' => 'YouTube', |
| 421 | 'fi-social-zerply' => 'Zerply', |
| 422 | 'fi-social-zurb' => 'Zurb', |
| 423 | ), |
| 424 | ), |
| 425 | ); |
| 426 | } |
| 427 | } |
| 428 |