HEX
Server: Apache/2
System: Linux sm.stlbg.net 3.10.0-962.3.2.lve1.5.87.el7.x86_64 #1 SMP Tue Jan 28 09:38:56 UTC 2025 x86_64
User: todorterziev (1053)
PHP: 7.4.33
Disabled: exec,system,passthru,shell_exec,proc_close,proc_open,dl,popen,show_source,posix_kill,posix_mkfifo,posix_getpwuid,posix_setpgid,posix_setsid,posix_setuid,posix_setgid,posix_seteuid,posix_setegid,posix_uname
Upload Files
File: /home/todorterziev/public_html/wp-content/plugins/prysm-core/library/flaticon.php
<?php
if ( !defined( 'ABSPATH' ) ) {
    exit( 'No direct script access allowed' );
}

class Prysm_Icons {

    /**
     * Constructor
     *
     * @since 1.0.0
     *
     * @access public
     */
    public function __construct() {
        add_filter( 'elementor/icons_manager/additional_tabs', [$this, 'add_prysm_icons_tab'] );
    }

    public function add_prysm_icons_tab( $tabs ) {
        $icon_css = get_template_directory_uri() . '/assets/plugins/business/css/flaticon.css';

        $tabs['Prysm-flaticon'] = [
            'name'          => 'Prysm-flaticon',
            'label'         => esc_html__( 'Business Icon', 'prysm' ),
            'url'           => $icon_css,
            'enqueue'       => [$icon_css],
            'prefix'        => 'flaticonv9-',
            'displayPrefix' => 'flaticonv9',
            'labelIcon'     => 'flaticonv9-loving',
            'ver'           => '1.0.0',
            'icons'         => $this->get_flat_icon_list(),
            'native'        => true,
        ];
        return $tabs;
    }

    /**
     * Get a list of Icons
     *
     * @return array
     */
    public function get_flat_icon_list() {
        $icon = [            
            'right-arrow',
            'next',
            'next-1',
            'next-1',
            'phone-call',
            'pin',
            'email',
            'phone-call-1',
            'link',
            'play-button',
            'quotes',
            'growth-chart',
            'market',
            'analytics',
            'high-value',
            'objectives',
            'brainstorming',
            'remuneration',
            'business-report',
            'business-report',
            'strategy',
            'segmentation',
            'data-analysis',
            'right-arrow-1',
            'pin-1',
            'email-1',
            'pinterest',
            'business-plan',
            'decision',
            'analysis',
            'left-quote',
            'stats',
            'offer',
            'calendar',
            'account',
            'idea',
            'friend',
            'text-message',
            'feedback',
            'projects',
            'repair',
            'consulting',
            'analysis',
            'money-bag',
            'sales',
            'menu',
            
        ];

        return $icon;
    } 

}

new Prysm_Icons();