HEX
Server: Apache
System: Linux p3plzcpnl508379.prod.phx3.secureserver.net 4.18.0-553.62.1.lve.el8.x86_64 #1 SMP Mon Jul 21 17:50:35 UTC 2025 x86_64
User: o63c3bzo3pm1 (10141848)
PHP: 8.2.29
Disabled: NONE
Upload Files
File: /home/o63c3bzo3pm1/public_html/wp-content/themes/xstore/framework/helpers.php
<?php  if ( ! defined('ETHEME_FW')) exit('No direct script access allowed');

/*
* Load Shortcode file
* ******************************************************************* */

if(!function_exists('etheme_load_shortcode')) {
	function etheme_load_shortcode($name) {
		$file = ETHEME_CODE_SHORTCODES . $name.'.php';
		if ( ( ETHEME_BASE != ETHEME_CHILD ) && file_exists(trailingslashit(ETHEME_CHILD).$file) ) {
			$path = trailingslashit(ETHEME_CHILD).$file;
			require_once($path) ;
			return true;
		}
		// return false to load from core
		return false;
	}
}


/*
* Get theme option 
* ******************************************************************* */

if(!function_exists('etheme_get_option')) {
	function etheme_get_option($key, $default = '',$doshortcode = false) {
		global $et_options;
//		$old_options = get_query_var('et_redux_options', array());

		if ( ! defined('ET_CORE_VERSION') ) {
//			if ( is_array($old_options) && isset($old_options[$key]) ) {
//				$et_kirki_option = $old_options[$key];
//			}
//			else {
				$et_kirki_option = isset($et_options[$key]) ? $et_options[$key] : '';
//			}
		}
		else {
			$et_kirki_option = get_theme_mod($key, $default);
  		}
  		$result = '';
  		
  		if(!empty($et_kirki_option)) {
	    	if($doshortcode){
	        	$result = do_shortcode($et_kirki_option);
	    	}else{
	        	$result =  $et_kirki_option;
	    	}
  		}
    	return apply_filters('et_option_'.$key, $result);
	}
}

if(!function_exists('etheme_option')) {
	function etheme_option($key, $setting = null,$doshortcode = true) {
		echo etheme_get_option($key, $setting, $doshortcode);
	}
}

/*
* Get custom meta for posts
* ******************************************************************* */

if(!function_exists('etheme_get_custom_field')) {
	function etheme_get_custom_field($field, $postid = false) {
		global $post;

		if ( null === $post && !$postid) return FALSE;

		if(!$postid) {
			$postid = $post->ID;
		} 

		$custom_field = get_post_meta($postid, ETHEME_PREFIX . $field, true);
		
		if(is_array($custom_field)) {
			$custom_field = $custom_field[0];
		}
		if ( $custom_field ) {
			return stripslashes( wp_kses_decode_entities( $custom_field ) );
		}
		else {
			return FALSE;
		}
	}
}

// **********************************************************************//
// ! Get query custom field
// **********************************************************************//
if ( !function_exists('etheme_get_query_custom_field')) {
	function etheme_get_query_custom_field( $field ) {
		$page    = get_query_var( 'et_page-id', array( 'id' => 0, 'type' => 'page' ) );
		$page_id = ( isset( $page['id'] ) ) ? $page['id'] : false;
		
		if ( $page_id ) {
			$field = etheme_get_custom_field( $field, $page_id );
		} else {
			$field = false;
		}
		
		return $field;
	}
}

/*
* Get file from child theme
* ******************************************************************* */

if(!function_exists('etheme_childtheme_file')) {
	add_filter('etheme_file_url', 'etheme_childtheme_file', 10, 1);
	
	function etheme_childtheme_file($file) {
		if ( ( ETHEME_BASE != ETHEME_CHILD ) && file_exists(trailingslashit(ETHEME_CHILD).$file) )
			$url = trailingslashit(ETHEME_CHILD).$file;
		else 
			$url = trailingslashit(ETHEME_BASE).$file;
		return $url;
	}
}


/*
* Get sidebars list for options
* ******************************************************************* */

if(!function_exists('etheme_get_sidebars')) {
	function etheme_get_sidebars() {
		global $wp_registered_sidebars;
		$sidebars[] = '--Choose--';
		foreach( $wp_registered_sidebars as $id=>$sidebar ) {
			$sidebars[ $id ] = $sidebar[ 'name' ];
        }
        return $sidebars;
	}
}

/*
* Get revolution sliders list for options
* ******************************************************************* */

if(!function_exists('etheme_get_revsliders')) {
	function etheme_get_revsliders() {
		global $wpdb;
	    if(class_exists('RevSliderAdmin')) {
            $transient_key = 'etheme_get_revsliders_all_list';
            $cached = (isset($_GET['page']) && $_GET['page'] == 'revslider') ? false : get_transient($transient_key);
            if ( $cached !== false ) {
                return $cached;
            }
	    	$rs = $wpdb->get_results( 
	    		"
	    		SELECT id, title, alias
	    		FROM ".$wpdb->prefix."revslider_sliders
	    		ORDER BY id ASC LIMIT 100
	    		"
	    	);
	    	$revsliders = array(
	    		'no_slider' => esc_html__('No Slider', 'xstore')
	    	);
	    	if ($rs) {
		    	$_ri = 1;
		    	foreach ( $rs as $slider ) {
		    	  	$revsliders[$slider->alias] = $slider->title;
		    		$_ri++;
		    	}
	    	}
            set_transient($transient_key, $revsliders, 12 * HOUR_IN_SECONDS);
	        return $revsliders;
	    } else {
		    return array('' => esc_html__('You need to install Revolution Slider plugin', 'xstore'));
	    }
	}
}

/*
* Trunc string for some words number
* ******************************************************************* */

if(!function_exists('etheme_trunc')) {
    function etheme_trunc($phrase, $max_words) {
       $phrase_array = explode(' ',$phrase);
       if(count($phrase_array) > $max_words && $max_words > 0)
          $phrase = implode(' ',array_slice($phrase_array, 0, $max_words)).' ...';
       return $phrase;
    }
}

if(! function_exists('etheme_strip_shortcodes')) {
	function etheme_strip_shortcodes($content ) {
		if ( false === strpos( $content, '[' ) ) {
			return $content;
		}

		$content = preg_replace("/\[[^\]]*\]/", '', $content);  # strip shortcodes, keep shortcode content

		return $content;
	}
}

function etheme_protocol_url($url) {
	if ( ! is_ssl() ) {
		return str_replace( 'https:', 'http:', $url );
	} else {
		return str_replace( 'http:', 'https:', $url );
	}
}

if (! function_exists('etheme_documentation_url')){
	function etheme_documentation_url($article = false, $echo = true) {
		$url = 'https://xstore.helpscoutdocs.com/';
		if ( $article ) {
			$url .= 'article/' . $article . '/';
		}
        else {
            $url = 'https://www.8theme.com/documentation/xstore/';
        }

		if ($echo){
			echo apply_filters('etheme_documentation_url',$url );
		} else {
			return apply_filters('etheme_documentation_url',$url );
		}
	}
}

if (! function_exists('etheme_support_forum_url')){
    function etheme_support_forum_url($echo = false) {
        $url = 'https://www.8theme.com/forums/xstore-wordpress-support-forum/';
        if ($echo){
            echo apply_filters('etheme_support_forum_url',$url );
        } else {
            return apply_filters('etheme_support_forum_url',$url );
        }
    }
}

if (! function_exists('etheme_contact_us_url')){
    function etheme_contact_us_url($echo = false) {
        if ($echo){
            echo has_filter('etheme_support_forum_url') ? etheme_support_forum_url() : 'https://www.8theme.com/contact-us/';
        } else {
            return has_filter('etheme_support_forum_url') ? etheme_support_forum_url() : 'https://www.8theme.com/contact-us/';
        }
    }
}