HEX
Server: Apache/2
System: Linux indiandc.serversfarm.com 3.10.0-1160.119.1.el7.x86_64 #1 SMP Tue Jun 4 14:43:51 UTC 2024 x86_64
User: webinastepupedu (1398)
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/webinastepupedu/public_html/wp-content/plugins/chaty-pro/includes/class-cht-icons.php
<?php
/**
 * Class CHT_Icons *
 *
 * @since 1.0
 */

namespace CHT\includes;

if (!defined('ABSPATH')) {
    exit;
}

class CHT_PRO_Widget
{

    protected $plugin_slug = 'chaty-app';

    protected $friendly_name = 'Chaty Widget';

    protected static $instance = null;


    public function __construct()
    {

    }//end __construct()


    public static function get_instance()
    {
        // If the single instance hasn't been set, set it now.
        if (null == self::$instance) {
            self::$instance = new self;
        }

        return self::$instance;

    }//end get_instance()


    public function get_plugin_slug()
    {
        return $this->plugin_slug;

    }//end get_plugin_slug()


    public function get_name()
    {
        return $this->friendly_name;

    }//end get_name()


}//end class