PluginProbe
Darkify – Dark Mode & Night Mode for Website & Admin (Dark Theme Included) / 1.5.5
Darkify – Dark Mode & Night Mode for Website & Admin (Dark Theme Included) v1.5.5
2.1.3 2.1.2 2.1.1 2.1.0 2.0.4 2.0.3 2.0.2 2.0.1 2.0.0 1.5.5 1.5.4 1.5.3 1.5.2 1.5.1 1.5.0 trunk 1.0.1 1.1.0 1.2.0 1.2.1 1.2.2 1.2.3 1.2.4 1.2.5 1.3.0 All 57 releases
darkify / src / Admin / Framework / fields / icon / icofont.php

icofont.php in Darkify – Dark Mode & Night Mode for Website & Admin (Dark Theme Included) 1.5.5, at src/Admin/Framework/fields/icon/icofont.php

71 lines 2.5 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
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