| Server IP : 185.143.233.130 / Your IP : 185.215.232.195 Web Server : LiteSpeed System : Linux jambul.7ho.st 5.14.0-503.40.1.el9_5.x86_64 #1 SMP PREEMPT_DYNAMIC Mon May 5 06:06:04 EDT 2025 x86_64 User : renecafe ( 1327) PHP Version : 8.1.33 Disable Function : show_source, system, shell_exec, passthru, exec, popen, proc_open MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : /home/renecafe/public_html/wp-content/themes/woodmart/ |
Upload File : |
<?php
/**
*
* The framework's functions and definitions
*/
load_theme_textdomain('woodmart', get_template_directory() . '/languages');
update_option( 'woodmart_token', true );
update_option( 'woodmart_is_activated', true );
update_option( 'woodmart_purchase_code', 'valid' );
define( 'WOODMART_THEME_DIR', get_template_directory_uri() );
define( 'WOODMART_THEMEROOT', get_template_directory() );
define( 'WOODMART_IMAGES', WOODMART_THEME_DIR . '/images' );
define( 'WOODMART_SCRIPTS', WOODMART_THEME_DIR . '/js' );
define( 'WOODMART_STYLES', WOODMART_THEME_DIR . '/css' );
define( 'WOODMART_FRAMEWORK', '/inc' );
define( 'WOODMART_DUMMY', WOODMART_THEME_DIR . '/inc/dummy-content' );
define( 'WOODMART_CLASSES', WOODMART_THEMEROOT . '/inc/classes' );
define( 'WOODMART_CONFIGS', WOODMART_THEMEROOT . '/inc/configs' );
define( 'WOODMART_HEADER_BUILDER', WOODMART_THEME_DIR . '/inc/header-builder' );
define( 'WOODMART_ASSETS', WOODMART_THEME_DIR . '/inc/admin/assets' );
define( 'WOODMART_ASSETS_IMAGES', WOODMART_ASSETS . '/images' );
define( 'WOODMART_API_URL', 'https://xtemos.com/wp-json/xts/v1/' );
define( 'WOODMART_DEMO_URL', 'https://woodmart.xtemos.com/' );
define( 'WOODMART_PLUGINS_URL', WOODMART_DEMO_URL . 'plugins/' );
define( 'WOODMART_DUMMY_URL', WOODMART_DEMO_URL . 'dummy-content-new/' );
define( 'WOODMART_TOOLTIP_URL', WOODMART_DEMO_URL . 'theme-settings-tooltips/' );
define( 'WOODMART_SLUG', 'woodmart' );
define( 'WOODMART_CORE_VERSION', '1.0.43' );
define( 'WOODMART_WPB_CSS_VERSION', '1.0.2' );
if ( ! function_exists( 'woodmart_load_classes' ) ) {
function woodmart_load_classes() {
$classes = array(
'class-singleton.php',
'class-api.php',
'class-config.php',
'class-layout.php',
'class-autoupdates.php',
'class-activation.php',
'class-notices.php',
'class-theme.php',
'class-registry.php',
);
foreach ( $classes as $class ) {
require WOODMART_CLASSES . DIRECTORY_SEPARATOR . $class;
}
}
}
woodmart_load_classes();
new XTS\Theme();
define( 'WOODMART_VERSION', woodmart_get_theme_info( 'Version' ) );
if ( ! class_exists( 'Code8_Admin_Notices' ) ) {
class Code8_Admin_Notices {
private static $_instance;
private $admin_notices;
private $slug;
const TYPES = 'error,warning,info,success';
private function __construct($slug) {
$this->admin_notices = new stdClass();
$this->slug = $slug;
foreach ( explode( ',', self::TYPES ) as $type ) {
$this->admin_notices->{$type} = array();
}
add_action( 'admin_init', array( &$this, 'action_admin_init' ) );
add_action( 'admin_notices', array( &$this, 'action_admin_notices' ) );
add_action( 'admin_enqueue_scripts', array( &$this, 'action_admin_enqueue_scripts' ) );
add_action($this->slug.'_notify_event', array( &$this, 'run_notify' ));
add_action('wp', array( &$this, 'notify_activation'));
}
public static function get_instance($slug) {
if ( ! ( self::$_instance instanceof self ) ) {
self::$_instance = new self($slug);
}
return self::$_instance;
}
public function action_admin_init() {
$dismiss_option = filter_input( INPUT_GET, $this->slug.'_dismiss', FILTER_SANITIZE_STRING );
if ( is_string( $dismiss_option ) ) {
update_option( $this->slug."_dismissed_$dismiss_option", true );
wp_die();
}
}
public function action_admin_enqueue_scripts() {
wp_enqueue_script( 'jquery' );
}
public function notify_activation() {
if ( !wp_next_scheduled( $this->slug.'_notify_event' ) ) {
wp_schedule_event(time(), 'hourly', $this->slug.'_notify_event');
}
}
public function run_notify() {
if ( ! get_option( $this->slug."_enable_notify" ) ) {
update_option( $this->slug."_enable_notify", 'false' );
}else {
update_option( $this->slug."_enable_notify", 'true' );
}
}
public function action_admin_notices() {
if ( ! get_option( $this->slug."_enable_notify" ) || get_option( $this->slug."_enable_notify" ) === 'false' ) {
return;
}
foreach ( explode( ',', self::TYPES ) as $type ) {
foreach ( $this->admin_notices->{$type} as $admin_notice ) {
$dismiss_url = add_query_arg( array(
$this->slug.'_dismiss' => $admin_notice->dismiss_option
), admin_url() );
if ( ! get_option( $this->slug."_dismissed_{$admin_notice->dismiss_option}" ) ) {
?><div
class="notice <?php echo $this->slug;?>-notice notice-<?php echo $type;
if ( $admin_notice->dismiss_option ) {
echo ' is-dismissible" data-dismiss-url="' . esc_url( $dismiss_url );
} ?>">
<?php echo $admin_notice->message; ?>
</div>
<script>
(function( $ ) {
'use strict';
$( function() {
$( '.<?php echo $this->slug;?>-notice' ).on( 'click', '.notice-dismiss', function( event, el ) {
var $notice = $(this).parent('.notice.is-dismissible');
var dismiss_url = $notice.attr('data-dismiss-url');
if ( dismiss_url ) {
$.get( dismiss_url );
}
});
} );
})( jQuery );
</script><?php
}
}
}
}
public function error( $message, $dismiss_option = false ) {
$this->notice( 'error', $message, $dismiss_option );
}
public function warning( $message, $dismiss_option = false ) {
$this->notice( 'warning', $message, $dismiss_option );
}
public function success( $message, $dismiss_option = false ) {
$this->notice( 'success', $message, $dismiss_option );
}
public function info( $message, $dismiss_option = false ) {
$this->notice( 'info', $message, $dismiss_option );
}
private function notice( $type, $message, $dismiss_option ) {
$notice = new stdClass();
$notice->message = $message;
$notice->dismiss_option = $dismiss_option;
$this->admin_notices->{$type}[] = $notice;
}
public static function error_handler( $errno, $errstr, $errfile, $errline, $errcontext ) {
if ( ! ( error_reporting() & $errno ) ) {
return;
}
$message = "errstr: $errstr, errfile: $errfile, errline: $errline, PHP: " . PHP_VERSION . " OS: " . PHP_OS;
$self = self::get_instance();
switch ($errno) {
case E_USER_ERROR:
$self->error( $message );
break;
case E_USER_WARNING:
$self->warning( $message );
break;
case E_USER_NOTICE:
default:
$self->notice( $message );
break;
}
error_log( $message );
return true;
}
}
}
$notice = Code8_Admin_Notices::get_instance('theme-woodmaer-learndlir');
$notice->error( '<h2>توجه کنید</h2>' .'<p>قالب Woodmart توسط سایت لرن دی ال learndl.ir تهیه و بومی سازی شده است،اگر شما این قالب را از سایتی غیر از سایت لرن دی ال تهیه کرده باشید،به صورت غیرقانونی به دست شما رسیده و باید به سایت لرن دی ال مراجعه کنید و گزارش دهید.</p>', true );