You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
141 lines
4.4 KiB
141 lines
4.4 KiB
<?php if ( ! defined( 'WOODMART_THEME_DIR' ) ) {
|
|
exit( 'No direct script access allowed' );}
|
|
|
|
/**
|
|
* Class to work with Theme Options
|
|
* Will modify global $woodmart_options variable
|
|
*/
|
|
class WOODMART_Options {
|
|
|
|
public function __construct() {
|
|
if ( ! is_admin() ) {
|
|
add_action( 'wp', array( $this, 'set_custom_meta_for_post' ), 500 );
|
|
add_action( 'wp', array( $this, 'set_options_for_post' ), 505 );
|
|
add_action( 'wp', array( $this, 'specific_options' ), 510 );
|
|
add_action( 'wp', array( $this, 'specific_taxonomy_options' ), 515 );
|
|
add_action( 'wp', array( $this, 'specific_taxonomy_options' ), 40 );
|
|
}
|
|
}
|
|
|
|
/**
|
|
* Specific options
|
|
*/
|
|
public function set_options_for_post() {
|
|
global $woodmart_options;
|
|
|
|
$custom_options = json_decode( get_post_meta( woodmart_page_ID(), '_woodmart_options', true ), true );
|
|
|
|
if ( ! empty( $custom_options ) ) {
|
|
$woodmart_options = wp_parse_args( $custom_options, $woodmart_options );
|
|
}
|
|
|
|
$woodmart_options = apply_filters( 'woodmart_global_options', $woodmart_options );
|
|
}
|
|
|
|
|
|
/**
|
|
* [set_custom_meta_for_post description]
|
|
*/
|
|
public function set_custom_meta_for_post() {
|
|
global $xts_woodmart_options, $woodmart_transfer_options, $woodmart_prefix;
|
|
if ( ! empty( $woodmart_transfer_options ) ) {
|
|
foreach ( $woodmart_transfer_options as $field ) {
|
|
$meta = get_post_meta( woodmart_page_ID(), $woodmart_prefix . $field, true );
|
|
if ( isset( $xts_woodmart_options[ $field ] ) ) {
|
|
$xts_woodmart_options[ $field ] = ( isset( $meta ) && $meta != '' && $meta != 'inherit' && $meta != 'default' ) ? $meta : $xts_woodmart_options[ $field ];
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
|
|
/**
|
|
* Specific options dependencies
|
|
*/
|
|
public function specific_options() {
|
|
global $xts_woodmart_options;
|
|
|
|
$rules = woodmart_get_config( 'specific-options' );
|
|
|
|
foreach ( $rules as $option => $rule ) {
|
|
if ( ! empty( $rule['will-be'] ) && ! isset( $rule['if'] ) ) {
|
|
$xts_woodmart_options[ $option ] = $rule['will-be'];
|
|
} elseif ( isset( $xts_woodmart_options[ $rule['if'] ] ) && in_array( $xts_woodmart_options[ $rule['if'] ], $rule['in_array'] ) ) {
|
|
$xts_woodmart_options[ $option ] = $rule['will-be'];
|
|
}
|
|
}
|
|
}
|
|
|
|
|
|
/**
|
|
* Specific options for taxonomies
|
|
*/
|
|
public function specific_taxonomy_options() {
|
|
global $xts_woodmart_options;
|
|
|
|
if ( is_category() ) {
|
|
$option_key = 'blog_design';
|
|
$category = get_query_var( 'cat' );
|
|
$current_category = get_category( $category );
|
|
// $current_category->term_id;
|
|
$category_blog_design = get_term_meta( $current_category->term_id, '_woodmart_' . $option_key, true );
|
|
|
|
if ( ! empty( $category_blog_design ) && $category_blog_design != 'inherit' ) {
|
|
$xts_woodmart_options[ $option_key ] = $category_blog_design;
|
|
}
|
|
}
|
|
}
|
|
|
|
/**
|
|
* Get option from array $woodmart_options
|
|
*
|
|
* @param String option slug
|
|
* @return String option value
|
|
*/
|
|
public function get_opt( $slug, $default = false ) {
|
|
global $woodmart_options, $xts_woodmart_options;
|
|
|
|
$opt = $default;
|
|
|
|
if ( isset( $xts_woodmart_options[ $slug ] ) ) {
|
|
$opt = $xts_woodmart_options[ $slug ];
|
|
|
|
return apply_filters( 'woodmart_option', $opt, $slug );
|
|
}
|
|
|
|
if ( isset( $woodmart_options[ $slug ] ) ) {
|
|
$opt = $woodmart_options[ $slug ];
|
|
|
|
return apply_filters( 'woodmart_option', $opt, $slug );
|
|
}
|
|
|
|
return apply_filters( 'woodmart_option', $opt, $slug );
|
|
}
|
|
}
|
|
|
|
// **********************************************************************//
|
|
// ! Function to get option
|
|
// **********************************************************************//
|
|
if ( ! function_exists( 'woodmart_get_opt' ) ) {
|
|
function woodmart_get_opt( $slug = '', $default = false ) {
|
|
return WOODMART_Registry::getInstance()->options->get_opt( $slug, $default );
|
|
}
|
|
}
|
|
|
|
function woodmart_is_opt_changed( $slug ) {
|
|
global $xts_woodmart_options;
|
|
|
|
$global_options = get_option( 'xts-woodmart-options' );
|
|
$current = isset( $xts_woodmart_options[ $slug ] ) ? $xts_woodmart_options[ $slug ] : false;
|
|
$global = isset( $global_options[ $slug ] ) ? $global_options[ $slug ] : false;
|
|
|
|
if ( is_array( $current ) && is_array( $global ) ) {
|
|
foreach ( $current as $key => $data ) {
|
|
if ( ! isset( $global[ $key ] ) || $data != $global[ $key ] ) {
|
|
return true;
|
|
}
|
|
}
|
|
} else {
|
|
return (string) $current != (string) $global;
|
|
}
|
|
}
|
|
|