HEX
Server: Apache
System: Linux c036.dattaweb.com 3.10.0-1160.119.1.el7.x86_64 #1 SMP Tue Jun 4 14:43:51 UTC 2024 x86_64
User: c0400220 (20588)
PHP: 7.4.33
Disabled: system, shell, exec, system_exec, shell_exec, mysql_pconnect, passthru, popen, proc_open, proc_close, proc_nice, proc_terminate, proc_get_status, escapeshellarg, escapeshellcmd, eval, dl, imap_mail, libvirt_connect, gnupg_init, unsetenv, apache_setenv, pcntl_exec, pcntl_alarm, pcntl_fork, pcntl_waitpid, pcntl_wait, pcntl_wifexited, pcntl_wifstopped, pcntl_wifsignaled, pcntl_wifcontinued, pcntl_wexitstatus, pcntl_wtermsig, pcntl_wstopsig, pcntl_signal, pcntl_signal_get_handler, pcntl_signal_dispatch, pcntl_get_last_error, pcntl_strerror, pcntl_sigprocmask, pcntl_sigwaitinfo, pcntl_sigtimedwait, pcntl_getpriority, pcntl_setpriority, pcntl_async_signals, opcache_get_status, opcache_reset, opcache_get_configuration
Upload Files
File: /home/c0400220/public_html/wp-content/plugins/aapside-master/appside-master.php
<?php
/*
Plugin Name: Aapside Master
Plugin URI: https://themeforest.net/user/ir-tech/portfolio
Description: Plugin to contain short codes, custom post types, Elementor Widgets, Custom Widget and more of the Aapside theme.
Author: Ir-Tech
Author URI:https://themeforest.net/user/ir-tech
Version: 2.0.4
Text Domain: appside-master
*/

// If this file is called directly, abort.
if ( ! defined( 'ABSPATH' ) ) {
	exit; // Exit if accessed directly.
}
//Check appside active or not
$theme_name_array   = array( 'Aapside', 'Aapside Child' );
$current_theme      = wp_get_theme();
$current_theme_name = $current_theme->get( 'Name' );
define( 'APPSIDE_THEME_ACTIVE', in_array( $current_theme_name, $theme_name_array ) ? true : false );

//plugin dir path
define( 'APPSIDE_MASTER_ENV', true );
define( 'APPSIDE_MASTER_ROOT_PATH', plugin_dir_path( __FILE__ ) );
define( 'APPSIDE_MASTER_ROOT_URL', plugin_dir_url( __FILE__ ) );
define( 'APPSIDE_MASTER_SELF_PATH', 'appside-master/appside-master.php' );
define( 'APPSIDE_MASTER_VERSION', '2.0.2' );
define( 'APPSIDE_MASTER_INC', APPSIDE_MASTER_ROOT_PATH .'/inc');
define( 'APPSIDE_MASTER_LIB', APPSIDE_MASTER_ROOT_PATH .'/lib');
define( 'APPSIDE_MASTER_ELEMENTOR', APPSIDE_MASTER_ROOT_PATH .'/elementor');
define( 'APPSIDE_MASTER_DEMO_IMPORT', APPSIDE_MASTER_ROOT_PATH .'/demo-data-import');
define( 'APPSIDE_MASTER_ADMIN', APPSIDE_MASTER_ROOT_PATH .'/admin');
define( 'APPSIDE_MASTER_ADMIN_ASSETS', APPSIDE_MASTER_ROOT_URL .'admin/assets');
define( 'APPSIDE_MASTER_WP_WIDGETS', APPSIDE_MASTER_ROOT_PATH .'/wp-widgets');
define( 'APPSIDE_MASTER_ASSETS', APPSIDE_MASTER_ROOT_URL .'assets/');
define( 'APPSIDE_MASTER_CSS', APPSIDE_MASTER_ASSETS .'css');
define( 'APPSIDE_MASTER_JS', APPSIDE_MASTER_ASSETS .'js');
define( 'APPSIDE_MASTER_IMG', APPSIDE_MASTER_ASSETS .'img');


if (file_exists( APPSIDE_MASTER_INC .'/class-appside-master-helper-functions.php')){
    require_once APPSIDE_MASTER_INC . '/class-appside-master-helper-functions.php';
    if (!function_exists('appside_master')){
        function appside_master(){
            return class_exists('Appside_Master_Helper_Functions') ? new Appside_Master_Helper_Functions() : false;
        }
    }
}

//load codester framework functions
if ( !APPSIDE_THEME_ACTIVE) {
	if ( file_exists( APPSIDE_MASTER_ROOT_PATH . '/inc/csf-functions.php' ) ) {
		require_once APPSIDE_MASTER_ROOT_PATH . '/inc/csf-functions.php';
	}
}

//plugin init
if ( file_exists( APPSIDE_MASTER_ROOT_PATH . '/inc/class-appside-master-init.php' ) ) {
	require_once APPSIDE_MASTER_ROOT_PATH . '/inc/class-appside-master-init.php';
}