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/elementor/index.php
<?php
if ( !defined( 'ABSPATH' ) ) {
    exit( 'No direct script access allowed' );
}

class Prysm_New_Icons {

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

    public function add_prysm_new_icons_tabs( $tabs = array() ) {

        $tabs['niobisicon'] = array(
            'name'          => 'niobisicon',
            'label'         => esc_html__( 'Prysm New', 'icon-element' ),
            'labelIcon'     => 'flaticon-home-page',
            'prefix'        => 'flaticon-',
            'displayPrefix' => 'consv3',
            'url'           => plugin_dir_url(__FILE__) . 'assets/css/prysm-icon/flaticon.css',
            'fetchJson'     => plugin_dir_url(__FILE__) . 'assets/css/prysm-icon/prysmicon.json',
            'ver'           => '4.1.1',
        );


        return $tabs;
    }

}

new Prysm_New_Icons();