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/element-helper/inc/helper.php
<?php
namespace ElementHelper;

class Helper {

    /**
    * Get widgets list
    */
    public static function get_widgets() {

        return [

            // 'cta' => [
            //     'title' => __( 'CTA', 'elementhelper' ),
            //     'icon' => 'fa fa-time',
            //     'ispro' =>true
            // ],

            // 'hero' => [
            //     'title' => __( 'Hero', 'elementhelper' ),
            //     'icon' => 'fa fa-time',
            //     'ispro' =>true
            // ],

            // 'skill' => [
            //     'title' => __( 'Skill', 'elementhelper' ),
            //     'icon' => 'fa fa-time',
            //     'ispro' =>true
            // ],

            // 'video-info' => [
            //     'title' => __( 'Video Info', 'elementhelper' ),
            //     'icon' => 'fa fa-time',
            //     'ispro' =>true
            // ],

            // 'faq' => [
            //     'title' => __( 'FAQ', 'elementhelper' ),
            //     'icon' => 'fa fa-card',
            //     'ispro' =>true
            // ],

            // 'about' => [
            //     'title' => __( 'About', 'elementhelper' ),
            //     'icon' => 'fa fa-card',
            //     'ispro' =>true
            // ],

            // 'about-tab' => [
            //     'title' => __( 'About Tab', 'elementhelper' ),
            //     'icon' => 'fa fa-card',
            //     'ispro' =>true
            // ],

            // 'brand' => [
            //     'title' => __( 'Brand', 'elementhelper' ),
            //     'icon' => 'fa fa-card',
            //     'ispro' =>true
            // ],

            // 'services-tab' => [
            //     'title' => __( 'Services Tab', 'elementhelper' ),
            //     'icon' => 'fa fa-card',
            //     'ispro' =>true
            // ],

            // 'cf7-tab' => [
            //     'title' => __( 'Contact Form 7 Tab', 'elementhelper' ),
            //     'icon' => 'fa fa-form',
            //     'ispro' =>true
            // ],

            // 'cf7' => [
            //     'title' => __( 'Contact Form 7', 'elementhelper' ),
            //     'icon' => 'fa fa-form',
            // ],

            // 'contact-info' => [
            //     'title' => __( 'Contact Info', 'elementhelper' ),
            //     'icon' => 'fa fa-form',
            // ],

            'heading' => [
                'title' => __( 'Heading Title', 'elementhelper' ),
                'icon' => 'fa fa-icon-box',
            ],

            // 'icon-box' => [
            //     'title' => __( 'Icon Box', 'elementhelper' ),
            //     'icon' => 'fa fa-blog-content',
            // ],

            // 'infobox' => [
            //     'title' => __( 'Info Box', 'elementhelper' ),
            //     'icon' => 'fa fa-blog-content',
            // ],

            // 'member' => [
            //     'title' => __( 'Team Member', 'elementhelper' ),
            //     'icon' => 'fa fa-team-member',
            // ],

            // 'member-details' => [
            //     'title' => __( 'Member Details', 'elementhelper' ),
            //     'icon' => 'fa fa-team-member',
            // ],

            // 'author-box' => [
            //     'title' => __( 'Author Box', 'elementhelper' ),
            //     'icon' => 'fa fa-team-member',
            // ],

            // 'featured-list' => [
            //     'title' => __( 'Featured List', 'elementhelper' ),
            //     'icon' => 'fa fa-team-member',
            // ],

            // 'fact' => [
            //     'title' => __( 'Fact', 'elementhelper' ),
            //     'icon' => 'fa fa-team-member',
            // ],

            // 'pricing-table' => [
            //     'title' => __( 'Pricing Table', 'elementhelper' ),
            //     'icon' => 'fa fa-file-cabinet',
            // ],

            // 'job-list' => [
            //     'title' => __( 'Job List', 'elementhelper' ),
            //     'icon' => 'fa fa-flip-card',
            // ],

            'post-list' => [
                'title' => __( 'Post List', 'elementhelper' ),
                'icon' => 'fa fa-post-list',
            ],

            // 'post-tab' => [
            //     'title' => __( 'Post Tab', 'elementhelper' ),
            //     'icon' => 'fa fa-post-tab',
            // ],

            // 'project-slider' => [
            //     'title' => __( 'Project Slider', 'elementhelper' ),
            //     'icon' => 'fa fa-post-tab',
            // ],

        ];
    }

    /**
    *  Get WooCommerce widgets list
    **/
    public static function get_woo_widgets() {

        return [
            'woo-product' => [
                'title' => __( 'Woo Product', 'elementhelper' ),
                'icon' => 'fa fa-card'
            ]

        ];
    }
}