# darkify/1.4.4/src/Admin/Framework/fields/icon/icofont.php

Darkify – Dark Mode &amp; Night Mode for Website &amp; Admin (Dark Theme Included), version 1.4.4. 71 lines.

- Page: https://pluginprobe.com/plugins/darkify/1.4.4/code/src/Admin/Framework/fields/icon/icofont.php
- Raw: https://pluginprobe.com/plugins/darkify/1.4.4/raw/src/Admin/Framework/fields/icon/icofont.php
- Modified: 2025-06-23T10:08:10+00:00

Line numbers below start at 1. Link to a line or a range by appending a fragment to the
page URL, for example `https://pluginprobe.com/plugins/darkify/1.4.4/code/src/Admin/Framework/fields/icon/icofont.php#L10-L20`.

```php
<?php
if (! defined('ABSPATH')) {
    die; // Cannot access directly
}

// Function to get the default IcoFont icons
if (! function_exists('darkify_get_default_icons')) {
    function darkify_get_default_icons()
    {
        return array(
            array(
                'title' => 'IcoFont',
                'icons' => array(
                    'icofont-settings-alt',
                    'icofont-ui-settings',
                    'icofont-settings',
                    'icofont-toggle-off',
                    'icofont-toggle-on',
                    'icofont-paint',
                    'icofont-multimedia',
                    'icofont-key',
                    'icofont-life-buoy',
                    'icofont-computer',
                    'icofont-laptop',
                    'icofont-laptop-alt',
                    'icofont-dashboard-web',
                    'icofont-rounded-down',
                    'icofont-rounded-left',
                    'icofont-rounded-up',
                    'icofont-rounded-right',
                    'icofont-ui-theme',
                    'icofont-hand-drag',
                    'icofont-holding-hands',
                    'icofont-expand',
                    'icofont-long-arrow-left',
                    'icofont-long-arrow-right',
                    'icofont-external-link',
                    'icofont-drag',
                    'icofont-copy-invert',
                    'icofont-close',
                    'icofont-check',
                    'icofont-check-circled',
                    'icofont-plus',
                    'icofont-plus-circle',
                    'icofont-minus',
                    'icofont-minus-circle',
                    'icofont-eye-open',
                    'icofont-eye-blocked',
                    'icofont-eye-alt',
                    'icofont-support-faq',
                    'icofont-ui-file',
                    'icofont-check-alt',
                    'icofont-checked',
                    'icofont-copy',
                    'icofont-long-arrow-down',
                    'icofont-long-arrow-up',
                    'icofont-outdent',
                    'icofont-close-circled',
                    'icofont-scroll-double-down',
                    'icofont-color-bucket',
                    'icofont-file-image',
                    'icofont-file-video',
                    'icofont-file-css',
                    'icofont-shield',
                    'icofont-question-circle',
                ),
            )
        );
    }
}

```
