| 1 |
<?php |
| 2 |
if (! defined('ABSPATH')) { |
| 3 |
die; // Cannot access directly |
| 4 |
} |
| 5 |
|
| 6 |
// Function to get the default IcoFont icons |
| 7 |
if (! function_exists('darkify_get_default_icons')) { |
| 8 |
function darkify_get_default_icons() |
| 9 |
{ |
| 10 |
return array( |
| 11 |
array( |
| 12 |
'title' => 'IcoFont', |
| 13 |
'icons' => array( |
| 14 |
'icofont-settings-alt', |
| 15 |
'icofont-ui-settings', |
| 16 |
'icofont-settings', |
| 17 |
'icofont-toggle-off', |
| 18 |
'icofont-toggle-on', |
| 19 |
'icofont-paint', |
| 20 |
'icofont-multimedia', |
| 21 |
'icofont-key', |
| 22 |
'icofont-life-buoy', |
| 23 |
'icofont-computer', |
| 24 |
'icofont-laptop', |
| 25 |
'icofont-laptop-alt', |
| 26 |
'icofont-dashboard-web', |
| 27 |
'icofont-rounded-down', |
| 28 |
'icofont-rounded-left', |
| 29 |
'icofont-rounded-up', |
| 30 |
'icofont-rounded-right', |
| 31 |
'icofont-ui-theme', |
| 32 |
'icofont-hand-drag', |
| 33 |
'icofont-holding-hands', |
| 34 |
'icofont-expand', |
| 35 |
'icofont-long-arrow-left', |
| 36 |
'icofont-long-arrow-right', |
| 37 |
'icofont-external-link', |
| 38 |
'icofont-drag', |
| 39 |
'icofont-copy-invert', |
| 40 |
'icofont-close', |
| 41 |
'icofont-check', |
| 42 |
'icofont-check-circled', |
| 43 |
'icofont-plus', |
| 44 |
'icofont-plus-circle', |
| 45 |
'icofont-minus', |
| 46 |
'icofont-minus-circle', |
| 47 |
'icofont-eye-open', |
| 48 |
'icofont-eye-blocked', |
| 49 |
'icofont-eye-alt', |
| 50 |
'icofont-support-faq', |
| 51 |
'icofont-ui-file', |
| 52 |
'icofont-check-alt', |
| 53 |
'icofont-checked', |
| 54 |
'icofont-copy', |
| 55 |
'icofont-long-arrow-down', |
| 56 |
'icofont-long-arrow-up', |
| 57 |
'icofont-outdent', |
| 58 |
'icofont-close-circled', |
| 59 |
'icofont-scroll-double-down', |
| 60 |
'icofont-color-bucket', |
| 61 |
'icofont-file-image', |
| 62 |
'icofont-file-video', |
| 63 |
'icofont-file-css', |
| 64 |
'icofont-shield', |
| 65 |
'icofont-question-circle', |
| 66 |
), |
| 67 |
) |
| 68 |
); |
| 69 |
} |
| 70 |
} |
| 71 |
|