HEX
Server: Apache
System: Linux uws7-179.cafe24.com 3.10.0-1160.119.1p.el7.x86_64 #1 SMP Thu Sep 11 14:15:01 KST 2025 x86_64
User: medikors (1589)
PHP: 7.3.1p1
Disabled: mysql_pconnect
Upload Files
File: /medikors/www/wp-content/plugins/happy-elementor-addons/classes/finder.php
<?php
/**
 * Finder class
 *
 * @package Happy_Addons
 */
namespace Happy_Addons\Elementor;

use Elementor\Core\Common\Modules\Finder\Base_Category as Finder_Category;

defined( 'ABSPATH' ) || die();

class Finder extends Finder_Category {

    const SLUG = 'happy-addons';

    /**
     * Get title.
     *
     * @access public
     *
     * @return string
     */
    public function get_title() {
        return __( 'Happy Addons', 'happy-elementor-addons' );
    }

    /**
     * Get category items.
     *
     * @access public
     *
     * @param array $options
     *
     * @return array
     */
    public function get_category_items( array $options = [] ) {
        $items = [
            'home' => [
                'title' => __( 'HappyAddons', 'happy-elementor-addons' ),
                'description' => __( 'Control Panel Home', 'happy-elementor-addons' ),
                'url' => ha_get_dashboard_link(),
                'icon' => ' hm hm-happyaddons',
                'keywords' => [ 'happy', 'setting', 'happyaddons', 'dashboard', 'widget', 'control', 'panel', 'essential' ],
                'actions' => [
                    [
                        'name' => 'view',
                        'url' => ha_get_dashboard_link(),
                        'icon' => 'eye'
                    ]
                ]
            ],
            'widgets' => [
                'title' => __( 'HappyAddons', 'happy-elementor-addons' ),
                'description' => __( 'Widgets Control Panel', 'happy-elementor-addons' ),
                'icon' => ' hm hm-cross-game',
                'url' => ha_get_dashboard_link( '#widgets' ),
                'keywords' => [ 'happy', 'setting', 'happyaddons', 'dashboard', 'widget', 'control', 'panel', 'essential' ],
                'actions' => [
                    [
                        'name' => 'view',
                        'url' => ha_get_dashboard_link( '#widgets' ),
                        'icon' => 'eye'
                    ]
                ]
            ],
        ];

        return $items;
    }
}