true,
'_builtin' => true,
);
$post_types = get_post_types( $args, 'objects' );
unset( $post_types['attachment'] );
$args['_builtin'] = false;
$custom_post_type = get_post_types( $args, 'objects' );
$post_types = apply_filters( 'astra_addon_location_rule_post_types', array_merge( $post_types, $custom_post_type ) );
$special_pages = array(
'special-404' => __( '404 Page', 'astra-addon' ),
'special-search' => __( 'Search Page', 'astra-addon' ),
'special-blog' => __( 'Blog / Posts Page', 'astra-addon' ),
'special-front' => __( 'Front Page', 'astra-addon' ),
'special-date' => __( 'Date Archive', 'astra-addon' ),
'special-author' => __( 'Author Archive', 'astra-addon' ),
);
if ( class_exists( 'WooCommerce' ) ) {
$special_pages['special-woo-shop'] = __( 'WooCommerce Shop Page', 'astra-addon' );
}
if ( 'single' === $consider_type ) {
$global_val = array(
'basic-global' => __( 'Entire Website', 'astra-addon' ),
'basic-singulars' => __( 'All Singulars', 'astra-addon' ),
);
} elseif ( 'archive' === $consider_type ) {
$global_val = array(
'basic-global' => __( 'Entire Website', 'astra-addon' ),
'basic-archives' => __( 'All Archives', 'astra-addon' ),
);
} else {
$global_val = array(
'basic-global' => __( 'Entire Website', 'astra-addon' ),
'basic-singulars' => __( 'All Singulars', 'astra-addon' ),
'basic-archives' => __( 'All Archives', 'astra-addon' ),
);
}
if ( 'single' === $consider_type ) {
$selection_options = array(
'basic' => array(
'label' => __( 'Basic', 'astra-addon' ),
'value' => $global_val,
),
);
} else {
$selection_options = array(
'basic' => array(
'label' => __( 'Basic', 'astra-addon' ),
'value' => $global_val,
),
'special-pages' => array(
'label' => __( 'Special Pages', 'astra-addon' ),
'value' => $special_pages,
),
);
}
$args = array(
'public' => true,
);
$taxonomies = get_taxonomies( $args, 'objects' );
if ( ! empty( $taxonomies ) ) {
foreach ( $taxonomies as $taxonomy ) {
// skip post format taxonomy.
if ( 'post_format' == $taxonomy->name ) {
continue;
}
foreach ( $post_types as $post_type ) {
$post_opt = self::get_post_target_rule_options( $post_type, $taxonomy, $consider_type );
if ( isset( $selection_options[ $post_opt['post_key'] ] ) ) {
if ( ! empty( $post_opt['value'] ) && is_array( $post_opt['value'] ) ) {
foreach ( $post_opt['value'] as $key => $value ) {
if ( ! in_array( $value, $selection_options[ $post_opt['post_key'] ]['value'] ) ) {
$selection_options[ $post_opt['post_key'] ]['value'][ $key ] = $value;
}
}
}
} else {
$selection_options[ $post_opt['post_key'] ] = array(
'label' => $post_opt['label'],
'value' => $post_opt['value'],
);
}
}
}
}
$selection_options['specific-target'] = array(
'label' => __( 'Specific Target', 'astra-addon' ),
'value' => array(
'specifics' => __( 'Specific Pages / Posts / Taxonomies, etc.', 'astra-addon' ),
),
);
/**
* Filter options displayed in the display conditions select field of Display conditions.
*
* @since 1.5.0
*/
return apply_filters( 'astra_addon_display_on_list', $selection_options );
}
/**
* Get user selection options.
*
* @return array
*/
public static function get_user_selections() {
$selection_options = array(
'basic' => array(
'label' => __( 'Basic', 'astra-addon' ),
'value' => array(
'all' => __( 'All', 'astra-addon' ),
'logged-in' => __( 'Logged In', 'astra-addon' ),
'logged-out' => __( 'Logged Out', 'astra-addon' ),
),
),
'advanced' => array(
'label' => __( 'Advanced', 'astra-addon' ),
'value' => array(),
),
);
/* User roles */
$roles = get_editable_roles();
foreach ( $roles as $slug => $data ) {
$selection_options['advanced']['value'][ $slug ] = $data['name'];
}
/**
* Filter options displayed in the user select field of Display conditions.
*
* @since 1.5.0
*/
return apply_filters( 'astra_addon_user_roles_list', $selection_options );
}
/**
* Get location label by key.
*
* @param string $key Location option key.
* @return string
*/
public static function get_location_by_key( $key ) {
if ( ! isset( self::$location_selection ) || empty( self::$location_selection ) ) {
self::$location_selection = self::get_location_selections();
}
$location_selection = self::$location_selection;
foreach ( $location_selection as $location_grp ) {
if ( isset( $location_grp['value'][ $key ] ) ) {
return $location_grp['value'][ $key ];
}
}
if ( is_string( $key ) && strpos( $key, 'post-' ) !== false ) {
$post_id = (int) str_replace( 'post-', '', $key );
return get_the_title( $post_id );
}
// taxonomy options.
if ( strpos( $key, 'tax-' ) !== false ) {
$tax_id = (int) str_replace( 'tax-', '', $key );
$term = get_term( $tax_id );
if ( ! is_wp_error( $term ) ) {
$term_taxonomy = ucfirst( str_replace( '_', ' ', $term->taxonomy ) );
return $term->name . ' - ' . $term_taxonomy;
} else {
return '';
}
}
return $key;
}
/**
* Get user label by key.
*
* @param string $key User option key.
* @return string
*/
public static function get_user_by_key( $key ) {
if ( ! isset( self::$user_selection ) || empty( self::$user_selection ) ) {
self::$user_selection = self::get_user_selections();
}
$user_selection = self::$user_selection;
if ( isset( $user_selection['basic']['value'][ $key ] ) ) {
return $user_selection['basic']['value'][ $key ];
} elseif ( $user_selection['advanced']['value'][ $key ] ) {
return $user_selection['advanced']['value'][ $key ];
}
return $key;
}
/**
* Ajax handeler to return the posts based on the search query.
* When searching for the post/pages only titles are searched for.
*
* @since 1.0.0
*/
public function astra_get_posts_by_query() {
check_ajax_referer( 'astra-addon-get-posts-by-query', 'nonce' );
$search_string = isset( $_POST['q'] ) ? sanitize_text_field( $_POST['q'] ) : ''; // phpcs:ignore WordPress.Security.NonceVerification.Missing
$data = array();
$result = array();
$args = array(
'public' => true,
'_builtin' => false,
);
$output = 'names'; // names or objects, note names is the default.
$operator = 'and'; // also supports 'or'.
$post_types = get_post_types( $args, $output, $operator );
$post_types['Posts'] = 'post';
$post_types['Pages'] = 'page';
foreach ( $post_types as $key => $post_type ) {
$data = array();
add_filter( 'posts_search', array( $this, 'search_only_titles' ), 10, 2 );
$query = new WP_Query(
array(
's' => $search_string,
'post_type' => $post_type,
'posts_per_page' => - 1,
)
);
if ( $query->have_posts() ) {
while ( $query->have_posts() ) {
$query->the_post();
$title = get_the_title();
$title .= ( 0 != $query->post->post_parent ) ? ' (' . get_the_title( $query->post->post_parent ) . ')' : '';
$id = get_the_id();
$data[] = array(
'id' => 'post-' . $id,
'text' => $title,
);
}
}
if ( is_array( $data ) && ! empty( $data ) ) {
$result[] = array(
'text' => $key,
'children' => $data,
);
}
}
$data = array();
wp_reset_postdata();
$args = array(
'public' => true,
);
$output = 'objects'; // names or objects, note names is the default.
$operator = 'and'; // also supports 'or'.
$taxonomies = get_taxonomies( $args, $output, $operator );
foreach ( $taxonomies as $taxonomy ) {
$terms = get_terms(
$taxonomy->name,
array(
'orderby' => 'count',
'hide_empty' => 0,
'name__like' => $search_string,
)
);
$data = array();
$label = ucwords( $taxonomy->label );
if ( ! empty( $terms ) ) {
foreach ( $terms as $term ) {
$term_taxonomy_name = ucfirst( str_replace( '_', ' ', $taxonomy->name ) );
$data[] = array(
'id' => 'tax-' . $term->term_id,
'text' => $term->name . ' archive page',
);
$data[] = array(
'id' => 'tax-' . $term->term_id . '-single-' . $taxonomy->name,
'text' => 'All singulars from ' . $term->name,
);
}
}
if ( is_array( $data ) && ! empty( $data ) ) {
$result[] = array(
'text' => $label,
'children' => $data,
);
}
}
// return the result in json.
wp_send_json( $result );
}
/**
* Extended above AJAX action for requirement of post id with post type.
* Case: Custom Layout's Dynamic Preview Feature.
*
* @since 4.3.0
* @return mixed
*/
public function astra_get_posts_with_type() {
check_ajax_referer( 'astra-addon-get-posts-by-query', 'nonce' );
$search_string = isset( $_POST['q'] ) ? sanitize_text_field( $_POST['q'] ) : ''; // phpcs:ignore WordPress.Security.NonceVerification.Missing
$data = array();
$result = array();
$args = array(
'public' => true,
'_builtin' => false,
);
$output = 'names'; // names or objects, note names is the default.
$operator = 'and'; // also supports 'or'.
$post_types = get_post_types( $args, $output, $operator );
$post_types['Posts'] = 'post';
$post_types['Pages'] = 'page';
foreach ( $post_types as $key => $post_type ) {
$data = array();
add_filter( 'posts_search', array( $this, 'search_only_titles' ), 10, 2 );
$query = new WP_Query(
array(
's' => $search_string,
'post_type' => $post_type,
'posts_per_page' => -1,
)
);
if ( $query->have_posts() ) {
while ( $query->have_posts() ) {
$query->the_post();
$title = get_the_title();
$title .= ( 0 != $query->post->post_parent ) ? ' (' . get_the_title( $query->post->post_parent ) . ')' : '';
$id = get_the_id();
$data[] = array(
'id' => $post_type . '__' . $id,
'text' => $title,
);
}
}
if ( is_array( $data ) && ! empty( $data ) ) {
$result[] = array(
'text' => $key,
'children' => $data,
);
}
}
$data = array();
wp_reset_postdata();
$args = array(
'public' => true,
);
$output = 'objects'; // names or objects, note names is the default.
$operator = 'and'; // also supports 'or'.
$taxonomies = get_taxonomies( $args, $output, $operator );
foreach ( $taxonomies as $taxonomy ) {
$terms = get_terms(
$taxonomy->name,
array(
'orderby' => 'count',
'hide_empty' => 0,
'name__like' => $search_string,
)
);
$data = array();
$label = ucwords( $taxonomy->label );
if ( ! empty( $terms ) ) {
foreach ( $terms as $term ) {
$term_taxonomy_name = ucfirst( str_replace( '_', ' ', $taxonomy->name ) );
$data[] = array(
'id' => 'tax-' . $term->term_id,
'text' => $term->name . ' archive page',
);
$data[] = array(
'id' => 'tax-' . $term->term_id . '-single-' . $taxonomy->name,
'text' => 'All singulars from ' . $term->name,
);
}
}
if ( is_array( $data ) && ! empty( $data ) ) {
$result[] = array(
'text' => $label,
'children' => $data,
);
}
}
// return the result in json.
wp_send_json( $result );
}
/**
* Return search results only by post title.
* This is only run from astra_get_posts_by_query()
*
* @param (string) $search Search SQL for WHERE clause.
* @param (WP_Query) $wp_query The current WP_Query object.
*
* @return (string) The Modified Search SQL for WHERE clause.
*/
public function search_only_titles( $search, $wp_query ) {
if ( ! empty( $search ) && ! empty( $wp_query->query_vars['search_terms'] ) ) {
global $wpdb;
$q = $wp_query->query_vars;
$n = ! empty( $q['exact'] ) ? '' : '%';
$search = array();
foreach ( (array) $q['search_terms'] as $term ) {
$search[] = $wpdb->prepare( "$wpdb->posts.post_title LIKE %s", $n . $wpdb->esc_like( $term ) . $n );
}
if ( ! is_user_logged_in() ) {
$search[] = "$wpdb->posts.post_password = ''";
}
$search = ' AND ' . implode( ' AND ', $search );
}
return $search;
}
/**
* Function Name: admin_styles.
* Function Description: admin_styles.
*/
public function admin_styles() {
wp_enqueue_script( 'astra-select2', ASTRA_EXT_URI . 'classes/modules/target-rule/select2.js', array( 'jquery' ), ASTRA_EXT_VER, true );
$wp_lang = get_locale();
$ast_lang = '';
if ( '' !== $wp_lang ) {
$select2_lang = array(
'' => 'en',
'hi_IN' => 'hi',
'mr' => 'mr',
'af' => 'af',
'ar' => 'ar',
'ary' => 'ar',
'as' => 'as',
'azb' => 'az',
'az' => 'az',
'bel' => 'be',
'bg_BG' => 'bg',
'bn_BD' => 'bn',
'bo' => 'bo',
'bs_BA' => 'bs',
'ca' => 'ca',
'ceb' => 'ceb',
'cs_CZ' => 'cs',
'cy' => 'cy',
'da_DK' => 'da',
'de_CH' => 'de',
'de_DE' => 'de',
'de_DE_formal' => 'de',
'de_CH_informal' => 'de',
'dzo' => 'dz',
'el' => 'el',
'en_CA' => 'en',
'en_GB' => 'en',
'en_AU' => 'en',
'en_NZ' => 'en',
'en_ZA' => 'en',
'eo' => 'eo',
'es_MX' => 'es',
'es_VE' => 'es',
'es_CR' => 'es',
'es_CO' => 'es',
'es_GT' => 'es',
'es_ES' => 'es',
'es_CL' => 'es',
'es_PE' => 'es',
'es_AR' => 'es',
'et' => 'et',
'eu' => 'eu',
'fa_IR' => 'fa',
'fi' => 'fi',
'fr_BE' => 'fr',
'fr_FR' => 'fr',
'fr_CA' => 'fr',
'gd' => 'gd',
'gl_ES' => 'gl',
'gu' => 'gu',
'haz' => 'haz',
'he_IL' => 'he',
'hr' => 'hr',
'hu_HU' => 'hu',
'hy' => 'hy',
'id_ID' => 'id',
'is_IS' => 'is',
'it_IT' => 'it',
'ja' => 'ja',
'jv_ID' => 'jv',
'ka_GE' => 'ka',
'kab' => 'kab',
'km' => 'km',
'ko_KR' => 'ko',
'ckb' => 'ku',
'lo' => 'lo',
'lt_LT' => 'lt',
'lv' => 'lv',
'mk_MK' => 'mk',
'ml_IN' => 'ml',
'mn' => 'mn',
'ms_MY' => 'ms',
'my_MM' => 'my',
'nb_NO' => 'nb',
'ne_NP' => 'ne',
'nl_NL' => 'nl',
'nl_NL_formal' => 'nl',
'nl_BE' => 'nl',
'nn_NO' => 'nn',
'oci' => 'oc',
'pa_IN' => 'pa',
'pl_PL' => 'pl',
'ps' => 'ps',
'pt_BR' => 'pt',
'pt_PT_ao90' => 'pt',
'pt_PT' => 'pt',
'rhg' => 'rhg',
'ro_RO' => 'ro',
'ru_RU' => 'ru',
'sah' => 'sah',
'si_LK' => 'si',
'sk_SK' => 'sk',
'sl_SI' => 'sl',
'sq' => 'sq',
'sr_RS' => 'sr',
'sv_SE' => 'sv',
'szl' => 'szl',
'ta_IN' => 'ta',
'te' => 'te',
'th' => 'th',
'tl' => 'tl',
'tr_TR' => 'tr',
'tt_RU' => 'tt',
'tah' => 'ty',
'ug_CN' => 'ug',
'uk' => 'uk',
'ur' => 'ur',
'uz_UZ' => 'uz',
'vi' => 'vi',
'zh_CN' => 'zh',
'zh_TW' => 'zh',
'zh_HK' => 'zh',
);
if ( isset( $select2_lang[ $wp_lang ] ) && file_exists( ASTRA_EXT_DIR . 'classes/modules/target-rule/i18n/' . $select2_lang[ $wp_lang ] . '.js' ) ) {
$ast_lang = $select2_lang[ $wp_lang ];
wp_enqueue_script(
'astra-select2-lang',
ASTRA_EXT_URI . 'classes/modules/target-rule/i18n/' . $select2_lang[ $wp_lang ] . '.js',
array(
'jquery',
'astra-select2',
),
ASTRA_EXT_VER,
true
);
}
}
wp_enqueue_script(
'astra-target-rule',
ASTRA_EXT_URI . 'classes/modules/target-rule/target-rule.js',
array(
'jquery',
'astra-select2',
),
ASTRA_EXT_VER,
true
);
wp_enqueue_script(
'astra-user-role',
ASTRA_EXT_URI . 'classes/modules/target-rule/user-role.js',
array(
'jquery',
),
ASTRA_EXT_VER,
true
);
wp_enqueue_style( 'astra-select2', ASTRA_EXT_URI . 'classes/modules/target-rule/select2.css', '', ASTRA_EXT_VER );
wp_enqueue_style( 'astra-target-rule', ASTRA_EXT_URI . 'classes/modules/target-rule/target-rule.css', '', ASTRA_EXT_VER );
/**
* Registered localize vars
*/
$localize_vars = array(
'ast_lang' => $ast_lang,
'please_enter' => __( 'Please enter', 'astra-addon' ),
'please_delete' => __( 'Please delete', 'astra-addon' ),
'more_char' => __( 'or more characters', 'astra-addon' ),
'character' => __( 'character', 'astra-addon' ),
'loading' => __( 'Loading more results…', 'astra-addon' ),
'only_select' => __( 'You can only select', 'astra-addon' ),
'item' => __( 'item', 'astra-addon' ),
'char_s' => __( 's', 'astra-addon' ),
'no_result' => __( 'No results found', 'astra-addon' ),
'searching' => __( 'Searching…', 'astra-addon' ),
'not_loader' => __( 'The results could not be loaded.', 'astra-addon' ),
'search' => __( 'Search pages / post / categories', 'astra-addon' ),
'ajax_nonce' => wp_create_nonce( 'astra-addon-get-posts-by-query' ),
);
wp_localize_script( 'astra-select2', 'astRules', $localize_vars );
}
/**
* Function Name: target_rule_settings_field.
* Function Description: Function to handle new input type.
*
* @param string $name string parameter.
* @param string $settings string parameter.
* @param string $value string parameter.
*/
public static function target_rule_settings_field( $name, $settings, $value ) {
$input_name = $name;
$type = isset( $settings['type'] ) ? $settings['type'] : 'target_rule';
$class = isset( $settings['class'] ) ? $settings['class'] : '';
$rule_type = isset( $settings['rule_type'] ) ? $settings['rule_type'] : 'target_rule';
$add_rule_label = isset( $settings['add_rule_label'] ) ? $settings['add_rule_label'] : __( 'Add Rule', 'astra-addon' );
$saved_values = $value;
$output = '';
if ( isset( self::$location_selection ) || empty( self::$location_selection ) ) {
self::$location_selection = self::get_location_selections();
}
$selection_options = self::$location_selection;
/* WP Template Format */
$output .= '';
/* Wrapper Start */
$output .= '
';
$output .= '
';
$output .= self::generate_target_rule_selector( $rule_type, $selection_options, $input_name, $saved_values, $add_rule_label );
$output .= '
';
/* Wrapper end */
$output .= '
';
echo wp_kses(
$output,
array(
'select' => array(
'class' => array(),
'name' => array(),
'multiple' => array(),
),
'script' => array(
'type' => array(),
'id' => array(),
),
'span' => array(
'class' => array(),
),
'a' => array(
'href' => array(),
'class' => array(),
'data-rule-id' => array(),
'data-rule-type' => array(),
),
'option' => array(
'class' => array(),
'value' => array(),
'selected' => array(),
),
'optgroup' => array(
'class' => array(),
'label' => array(),
),
'div' => array(
'class' => array(),
'style' => array(),
'data-type' => array(),
'data-rule' => array(),
),
)
);
}
/**
* Get target rules for generating the markup for rule selector.
*
* @since 1.0.0
*
* @param object $post_type post type parameter.
* @param object $taxonomy taxonomy for creating the target rule markup.
* @param mixed $consider_type consider type for dealing with rule options.
*/
public static function get_post_target_rule_options( $post_type, $taxonomy, $consider_type = false ) {
$post_key = str_replace( ' ', '-', strtolower( $post_type->label ) );
$post_label = ucwords( $post_type->label );
$post_name = $post_type->name;
$post_option = array();
if ( 'archive' !== $consider_type ) {
/* translators: %s post label */
$all_posts = sprintf( __( 'All %s', 'astra-addon' ), $post_label );
$post_option[ $post_name . '|all' ] = $all_posts;
}
if ( 'pages' != $post_key && 'single' !== $consider_type ) {
/* translators: %s post label */
$all_archive = sprintf( __( 'All %s Archive', 'astra-addon' ), $post_label );
$post_option[ $post_name . '|all|archive' ] = $all_archive;
}
if ( 'single' !== $consider_type ) {
if ( in_array( $post_type->name, $taxonomy->object_type ) ) {
$tax_label = ucwords( $taxonomy->label );
$tax_name = $taxonomy->name;
/* translators: %s taxonomy label */
$tax_archive = sprintf( __( 'All %s Archive', 'astra-addon' ), $tax_label );
$post_option[ $post_name . '|all|taxarchive|' . $tax_name ] = $tax_archive;
}
}
$post_output['post_key'] = $post_key;
$post_output['label'] = $post_label;
$post_output['value'] = $post_option;
return $post_output;
}
/**
* Generate markup for rendering the location selction.
*
* @since 1.0.0
* @param String $type Rule type display|exclude.
* @param Array $selection_options Array for available selection fields.
* @param String $input_name Input name for the settings.
* @param Array $saved_values Array of saved valued.
* @param String $add_rule_label Label for the Add rule button.
*
* @return HTML Markup for for the location settings.
*/
public static function generate_target_rule_selector( $type, $selection_options, $input_name, $saved_values, $add_rule_label ) {
$output = '';
if ( ! is_array( $saved_values ) || ( is_array( $saved_values ) && empty( $saved_values ) ) ) {
$saved_values = array();
$saved_values['rule'][0] = '';
$saved_values['specific'][0] = '';
}
$index = 0;
foreach ( $saved_values['rule'] as $index => $data ) {
$output .= '
';
/* Condition Selection */
$output .= '
';
$output .= '
';
$output .= '';
$output .= '
';
$output .= '
';
/* Specific page selection */
$output .= '
';
$output .= '';
$output .= '
';
}
$output .= '
';
/* Add new rule */
$output .= '';
if ( 'display' == $type ) {
/* Add new rule */
$output .= '';
}
return $output;
}
/**
* Get current layout.
* Checks of the passed post id of the layout is to be displayed in the page.
*
* @param int $layout_id Layout ID.
* @param string $option Option prefix.
*
* @return int|boolean If the current layout is to be displayed it will be returned back else a boolean will be passed.
*/
public function get_current_layout( $layout_id, $option ) {
$post_id = ( ! is_404() && ! is_search() && ! is_archive() && ! is_home() ) ? get_the_id() : false;
$current_layout = false;
$is_exclude = false;
$is_user_role = false;
$display_on = get_post_meta( $layout_id, $option . '-location', true );
$exclude_on = get_post_meta( $layout_id, $option . '-exclusion', true );
$user_roles = get_post_meta( $layout_id, $option . '-users', true );
/* Parse Display On Condition */
$is_display = $this->parse_layout_display_condition( $post_id, $display_on );
if ( true == $is_display ) {
/* Parse Exclude On Condition */
$is_exclude = $this->parse_layout_display_condition( $post_id, $exclude_on );
/* Parse User Role Condition */
$is_user_role = $this->parse_user_role_condition( $post_id, $user_roles );
}
if ( $is_display && ! $is_exclude && $is_user_role ) {
$current_layout = $layout_id;
}
// filter target page settings.
$current_layout = apply_filters( 'astra_addon_target_page_settings', $current_layout, $layout_id );
return $current_layout;
}
/**
* Checks for the display condition for the current page/
*
* @param int $post_id Current post ID.
* @param array $rules Array of rules Display on | Exclude on.
*
* @return boolean Returns true or false depending on if the $rules match for the current page and the layout is to be displayed.
*/
public function parse_layout_display_condition( $post_id, $rules ) {
$display = false;
$current_post_type = get_post_type( $post_id );
if ( isset( $rules['rule'] ) && is_array( $rules['rule'] ) && ! empty( $rules['rule'] ) ) {
foreach ( $rules['rule'] as $key => $rule ) {
if ( ! empty( $rule ) ) {
if ( strrpos( $rule, 'all' ) !== false ) {
$rule_case = 'all';
} else {
$rule_case = $rule;
}
switch ( $rule_case ) {
case 'basic-global':
$display = true;
break;
case 'basic-singulars':
if ( is_singular() ) {
$display = true;
}
break;
case 'basic-archives':
if ( is_archive() ) {
$display = true;
}
break;
case 'special-404':
if ( is_404() ) {
$display = true;
}
break;
case 'special-search':
if ( is_search() ) {
$display = true;
}
break;
case 'special-blog':
if ( is_home() ) {
$display = true;
}
break;
case 'special-front':
if ( is_front_page() ) {
$display = true;
}
break;
case 'special-date':
if ( is_date() ) {
$display = true;
}
break;
case 'special-author':
if ( is_author() ) {
$display = true;
}
break;
case 'special-woo-shop':
if ( function_exists( 'is_shop' ) && is_shop() ) {
$display = true;
}
break;
case 'all':
$rule_data = explode( '|', $rule );
$post_type = isset( $rule_data[0] ) ? $rule_data[0] : false;
$archieve_type = isset( $rule_data[2] ) ? $rule_data[2] : false;
$taxonomy = isset( $rule_data[3] ) ? $rule_data[3] : false;
if ( false === $archieve_type ) {
$current_post_type = get_post_type( $post_id );
if ( false !== $post_id && $current_post_type == $post_type ) {
$display = true;
}
} else {
if ( is_archive() ) {
$current_post_type = get_post_type();
if ( $current_post_type == $post_type ) {
if ( 'archive' == $archieve_type ) {
$display = true;
} elseif ( 'taxarchive' == $archieve_type ) {
$obj = get_queried_object();
$current_taxonomy = '';
if ( '' !== $obj && null !== $obj && isset( $obj->taxonomy ) ) {
$current_taxonomy = $obj->taxonomy;
}
if ( $current_taxonomy == $taxonomy ) {
$display = true;
}
}
}
}
}
break;
case 'specifics':
if ( isset( $rules['specific'] ) && is_array( $rules['specific'] ) ) {
foreach ( $rules['specific'] as $specific_page ) {
$specific_data = explode( '-', $specific_page );
$specific_post_type = isset( $specific_data[0] ) ? $specific_data[0] : false;
$specific_post_id = isset( $specific_data[1] ) ? $specific_data[1] : false;
if ( 'post' == $specific_post_type ) {
if ( $specific_post_id == $post_id ) {
$display = true;
}
} elseif ( isset( $specific_data[2] ) && ( 'single' == $specific_data[2] ) && 'tax' == $specific_post_type ) {
if ( is_singular() ) {
$term_details = get_term( $specific_post_id );
if ( isset( $term_details->taxonomy ) ) {
$has_term = has_term( (int) $specific_post_id, $term_details->taxonomy, $post_id );
if ( $has_term ) {
$display = true;
}
}
}
} elseif ( 'tax' == $specific_post_type ) {
$tax_id = get_queried_object_id();
if ( $specific_post_id == $tax_id ) {
$display = true;
}
}
}
}
break;
default:
break;
}
}
if ( $display ) {
break;
}
}
}
return $display;
}
/**
* Function Name: target_user_role_settings_field.
* Function Description: Function to handle new input type.
*
* @param string $name string parameter.
* @param string $settings string parameter.
* @param string $value string parameter.
*/
public static function target_user_role_settings_field( $name, $settings, $value ) {
$input_name = $name;
$type = isset( $settings['type'] ) ? $settings['type'] : 'target_rule';
$class = isset( $settings['class'] ) ? $settings['class'] : '';
$rule_type = isset( $settings['rule_type'] ) ? $settings['rule_type'] : 'target_rule';
$add_rule_label = isset( $settings['add_rule_label'] ) ? $settings['add_rule_label'] : __( 'Add Rule', 'astra-addon' );
$saved_values = $value;
$output = '';
if ( ! isset( self::$user_selection ) || empty( self::$user_selection ) ) {
self::$user_selection = self::get_user_selections();
}
$selection_options = self::$user_selection;
/* WP Template Format */
$output .= '';
if ( ! is_array( $saved_values ) || ( is_array( $saved_values ) && empty( $saved_values ) ) ) {
$saved_values = array();
$saved_values[0] = '';
}
$index = 0;
$output .= '';
$output .= '
';
$output .= '
';
foreach ( $saved_values as $index => $data ) {
$output .= '
';
$output .= '
';
/* Condition Selection */
$output .= '
';
$output .= '';
$output .= '
';
$output .= '
';
}
$output .= '
';
/* Add new rule */
$output .= '
';
$output .= '
';
$output .= '
';
echo wp_kses(
$output,
array(
'select' => array(
'class' => array(),
'name' => array(),
'multiple' => array(),
),
'script' => array(
'type' => array(),
'id' => array(),
),
'span' => array(
'class' => array(),
),
'a' => array(
'href' => array(),
'class' => array(),
'data-rule-id' => array(),
'data-rule-type' => array(),
),
'option' => array(
'class' => array(),
'value' => array(),
'selected' => array(),
),
'optgroup' => array(
'class' => array(),
'label' => array(),
),
'div' => array(
'class' => array(),
'style' => array(),
'data-type' => array(),
'data-rule' => array(),
),
)
);
}
/**
* Parse user role condition.
*
* @since 1.0.0
* @param int $post_id Post ID.
* @param Array $rules Current user rules.
*
* @return boolean True = user condition passes. False = User condition does not pass.
*/
public function parse_user_role_condition( $post_id, $rules ) {
$show_popup = true;
if ( is_array( $rules ) && ! empty( $rules ) ) {
$show_popup = false;
foreach ( $rules as $i => $rule ) {
switch ( $rule ) {
case '':
case 'all':
$show_popup = true;
break;
case 'logged-in':
if ( is_user_logged_in() ) {
$show_popup = true;
}
break;
case 'logged-out':
if ( ! is_user_logged_in() ) {
$show_popup = true;
}
break;
default:
if ( is_user_logged_in() ) {
$current_user = wp_get_current_user();
if ( isset( $current_user->roles )
&& is_array( $current_user->roles )
&& in_array( $rule, $current_user->roles )
) {
$show_popup = true;
}
}
break;
}
if ( $show_popup ) {
break;
}
}
}
return $show_popup;
}
/**
* Get current page type
*
* @since 1.0.0
*
* @return string Page Type.
*/
public function get_current_page_type() {
if ( null === self::$current_page_type ) {
$page_type = '';
$current_id = false;
if ( is_404() ) {
$page_type = 'is_404';
} elseif ( is_search() ) {
$page_type = 'is_search';
} elseif ( is_archive() ) {
$page_type = 'is_archive';
if ( is_category() || is_tag() || is_tax() ) {
$page_type = 'is_tax';
} elseif ( is_date() ) {
$page_type = 'is_date';
} elseif ( is_author() ) {
$page_type = 'is_author';
} elseif ( function_exists( 'is_shop' ) && is_shop() ) {
$page_type = 'is_woo_shop_page';
}
} elseif ( is_home() ) {
$page_type = 'is_home';
} elseif ( is_front_page() ) {
$page_type = 'is_front_page';
$current_id = get_the_id();
} elseif ( is_singular() ) {
$page_type = 'is_singular';
$current_id = get_the_id();
} else {
$current_id = get_the_id();
}
self::$current_page_data['ID'] = $current_id;
self::$current_page_type = $page_type;
}
return self::$current_page_type;
}
/**
* Get posts by conditions
*
* @since 1.0.0
* @param string $post_type Post Type.
* @param array $option meta option name.
*
* @return object|array Posts.
*/
public function get_posts_by_conditions( $post_type, $option ) {
global $wpdb;
global $post;
$post_type = $post_type ? esc_sql( $post_type ) : esc_sql( $post->post_type );
if ( is_array( self::$current_page_data ) && isset( self::$current_page_data[ $post_type ] ) ) {
return apply_filters( 'astra_addon_get_display_posts_by_conditions', self::$current_page_data[ $post_type ], $post_type );
}
$current_page_type = $this->get_current_page_type();
self::$current_page_data[ $post_type ] = array();
$option['current_post_id'] = self::$current_page_data['ID'];
$meta_header = self::get_meta_option_post( $post_type, $option );
/* Meta option is enabled */
if ( false === $meta_header ) {
$current_post_type = esc_sql( get_post_type() );
$current_post_id = false;
$q_obj = get_queried_object();
$location = isset( $option['location'] ) ? esc_sql( $option['location'] ) : '';
$wpml_translate_query = '';
$wpml_translate_query_condition = '';
$check_wpml = false;
if ( class_exists( 'SitePress' ) ) {
global $sitepress;
$cpt_translation_mode = apply_filters( 'wpml_sub_setting', false, 'custom_posts_sync_option', 'astra-advanced-hook' ); // phpcs:ignore WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedHooknameFound
if ( false != $cpt_translation_mode ) {
$check_wpml = true;
$current_language = $sitepress->get_current_language();
$wpml_translate_query = "INNER JOIN {$wpdb->prefix}icl_translations as icl ON pm.post_id = icl.element_id";
$wpml_translate_query_condition = "AND icl.language_code = '{$current_language}'";
}
}
/* Entire Website */
$meta_args = "pm.meta_value LIKE '%\"basic-global\"%'";
$meta_args = apply_filters( 'astra_addon_meta_args_post_by_condition', $meta_args, $q_obj, $current_post_id );
switch ( $current_page_type ) {
case 'is_404':
$meta_args .= " OR pm.meta_value LIKE '%\"special-404\"%'";
break;
case 'is_search':
$meta_args .= " OR pm.meta_value LIKE '%\"special-search\"%'";
break;
case 'is_archive':
case 'is_tax':
case 'is_date':
case 'is_author':
$meta_args .= " OR pm.meta_value LIKE '%\"basic-archives\"%'";
$meta_args .= " OR pm.meta_value LIKE '%\"{$current_post_type}|all|archive\"%'";
if ( 'is_tax' == $current_page_type && ( is_category() || is_tag() || is_tax() ) ) {
if ( is_object( $q_obj ) ) {
$meta_args .= " OR pm.meta_value LIKE '%\"{$current_post_type}|all|taxarchive|{$q_obj->taxonomy}\"%'";
$meta_args .= " OR pm.meta_value LIKE '%\"tax-{$q_obj->term_id}\"%'";
}
} elseif ( 'is_date' == $current_page_type ) {
$meta_args .= " OR pm.meta_value LIKE '%\"special-date\"%'";
} elseif ( 'is_author' == $current_page_type ) {
$meta_args .= " OR pm.meta_value LIKE '%\"special-author\"%'";
}
break;
case 'is_home':
$meta_args .= " OR pm.meta_value LIKE '%\"special-blog\"%'";
break;
case 'is_front_page':
$current_id = esc_sql( get_the_id() );
$current_post_id = $current_id;
$meta_args .= " OR pm.meta_value LIKE '%\"special-front\"%'";
$meta_args .= " OR pm.meta_value LIKE '%\"{$current_post_type}|all\"%'";
$meta_args .= " OR pm.meta_value LIKE '%\"post-{$current_id}\"%'";
break;
case 'is_singular':
$current_id = esc_sql( get_the_id() );
if ( $check_wpml ) {
$current_id = icl_object_id( $current_id, $current_post_type, true, $current_language );
}
$current_post_id = $current_id;
$meta_args .= " OR pm.meta_value LIKE '%\"basic-singulars\"%'";
$meta_args .= " OR pm.meta_value LIKE '%\"{$current_post_type}|all\"%'";
$meta_args .= " OR pm.meta_value LIKE '%\"post-{$current_id}\"%'";
if ( is_object( $q_obj ) ) {
$taxonomies = get_object_taxonomies( $q_obj->post_type );
$terms = wp_get_post_terms( $q_obj->ID, $taxonomies );
foreach ( $terms as $key => $term ) {
$meta_args .= " OR pm.meta_value LIKE '%\"tax-{$term->term_id}-single-{$term->taxonomy}\"%'";
}
}
break;
case 'is_woo_shop_page':
$meta_args .= " OR pm.meta_value LIKE '%\"special-woo-shop\"%'";
break;
case '':
$current_post_id = get_the_id();
break;
}
$wpdb->ast_meta_args = $meta_args;
$wpdb->ast_wpml_translate_query = $wpml_translate_query;
$wpdb->ast_wpml_translate_query_condition = $wpml_translate_query_condition;
$posts = $wpdb->get_results( $wpdb->prepare( "SELECT p.ID, pm.meta_value FROM {$wpdb->postmeta} as pm INNER JOIN {$wpdb->posts} as p ON pm.post_id = p.ID {$wpdb->ast_wpml_translate_query} WHERE pm.meta_key = ('%1s') AND p.post_type = ('%2s') {$wpdb->ast_wpml_translate_query_condition} AND p.post_status = 'publish' AND ({$wpdb->ast_meta_args}) ORDER BY p.post_date DESC", $location, $post_type ) );
$enabled = isset( $option['enabled'] ) ? $option['enabled'] : '';
foreach ( $posts as $local_post ) {
// ignore disabled layouts.
if ( $enabled && 'no' === get_post_meta( $local_post->ID, $enabled, true ) ) {
continue;
}
self::$current_page_data[ $post_type ][ $local_post->ID ] = array(
'id' => $local_post->ID,
'location' => maybe_unserialize( $local_post->meta_value ),
);
}
$option['current_post_id'] = $current_post_id;
$this->remove_exclusion_rule_posts( $post_type, $option );
$this->remove_user_rule_posts( $post_type, $option );
}
return apply_filters( 'astra_addon_get_display_posts_by_conditions', self::$current_page_data[ $post_type ], $post_type );
}
/**
* Remove exclusion rule posts.
*
* @since 1.0.0
* @param string $post_type Post Type.
* @param array $option meta option name.
*/
public function remove_exclusion_rule_posts( $post_type, $option ) {
$exclusion = isset( $option['exclusion'] ) ? $option['exclusion'] : '';
$current_post_id = isset( $option['current_post_id'] ) ? $option['current_post_id'] : false;
foreach ( self::$current_page_data[ $post_type ] as $c_post_id => $c_data ) {
$exclusion_rules = get_post_meta( $c_post_id, $exclusion, true );
$is_exclude = $this->parse_layout_display_condition( $current_post_id, $exclusion_rules );
if ( $is_exclude ) {
unset( self::$current_page_data[ $post_type ][ $c_post_id ] );
}
}
}
/**
* Remove user rule posts.
*
* @since 1.0.0
* @param int $post_type Post Type.
* @param array $option meta option name.
*/
public function remove_user_rule_posts( $post_type, $option ) {
$users = isset( $option['users'] ) ? $option['users'] : '';
$current_post_id = isset( $option['current_post_id'] ) ? $option['current_post_id'] : false;
foreach ( self::$current_page_data[ $post_type ] as $c_post_id => $c_data ) {
$user_rules = get_post_meta( $c_post_id, $users, true );
$is_user = $this->parse_user_role_condition( $current_post_id, $user_rules );
if ( ! $is_user ) {
unset( self::$current_page_data[ $post_type ][ $c_post_id ] );
}
}
}
/**
* Same display_on notice.
*
* @since 1.0.0
* @param int $post_type Post Type.
* @param array $option meta option name.
*/
public static function same_display_on_notice( $post_type, $option ) {
global $wpdb;
global $post;
$all_rules = array();
$already_set_rule = array();
$location = isset( $option['location'] ) ? $option['location'] : '';
$all_headers = $wpdb->get_results(
$wpdb->prepare(
"SELECT p.ID, p.post_title, pm.meta_value FROM {$wpdb->postmeta} as pm
INNER JOIN {$wpdb->posts} as p ON pm.post_id = p.ID
WHERE pm.meta_key = %s
AND p.post_type = %s
AND p.post_status = 'publish'",
$location,
$post_type
)
);
foreach ( $all_headers as $header ) {
$location_rules = maybe_unserialize( $header->meta_value );
if ( is_array( $location_rules ) && isset( $location_rules['rule'] ) ) {
foreach ( $location_rules['rule'] as $key => $rule ) {
if ( ! isset( $all_rules[ $rule ] ) ) {
$all_rules[ $rule ] = array();
}
if ( 'specifics' == $rule && isset( $location_rules['specific'] ) && is_array( $location_rules['specific'] ) ) {
foreach ( $location_rules['specific'] as $s_index => $s_value ) {
$all_rules[ $rule ][ $s_value ][ $header->ID ] = array(
'ID' => $header->ID,
'name' => $header->post_title,
);
}
} else {
$all_rules[ $rule ][ $header->ID ] = array(
'ID' => $header->ID,
'name' => $header->post_title,
);
}
}
}
}
if ( empty( $post ) ) {
return;
}
$current_post_data = get_post_meta( $post->ID, $location, true );
if ( is_array( $current_post_data ) && isset( $current_post_data['rule'] ) ) {
foreach ( $current_post_data['rule'] as $c_key => $c_rule ) {
if ( ! isset( $all_rules[ $c_rule ] ) ) {
continue;
}
if ( 'specifics' === $c_rule ) {
foreach ( $current_post_data['specific'] as $s_index => $s_id ) {
if ( ! isset( $all_rules[ $c_rule ][ $s_id ] ) ) {
continue;
}
foreach ( $all_rules[ $c_rule ][ $s_id ] as $p_id => $data ) {
if ( $p_id == $post->ID ) {
continue;
}
$already_set_rule[] = $data['name'];
}
}
} else {
foreach ( $all_rules[ $c_rule ] as $p_id => $data ) {
if ( $p_id == $post->ID ) {
continue;
}
$already_set_rule[] = $data['name'];
}
}
}
}
if ( ! empty( $already_set_rule ) ) {
add_action(
'admin_notices',
function() use ( $already_set_rule ) {
$rule_set_titles = '' . implode( ',', $already_set_rule ) . '';
/* translators: %s post title. */
$notice = sprintf( __( 'The same display setting is already exist in %s post/s.', 'astra-addon' ), $rule_set_titles );
echo '';
echo '
' . wp_kses( $notice, array( 'strong' => true ) ) . '
';
echo '
';
}
);
}
}
/**
* Meta option post.
*
* @since 1.0.0
* @param string $post_type Post Type.
* @param array $option meta option name.
*
* @return false | object
*/
public static function get_meta_option_post( $post_type, $option ) {
$page_meta = ( isset( $option['page_meta'] ) && '' != $option['page_meta'] ) ? $option['page_meta'] : false;
if ( false !== $page_meta ) {
$current_post_id = isset( $option['current_post_id'] ) ? $option['current_post_id'] : false;
$meta_id = get_post_meta( $current_post_id, $option['page_meta'], true );
if ( false !== $meta_id && '' != $meta_id ) {
self::$current_page_data[ $post_type ][ $meta_id ] = array(
'id' => $meta_id,
'location' => '',
);
return self::$current_page_data[ $post_type ];
}
}
return false;
}
/**
* Get post selection.
*
* @since 1.0.0
* @param string $post_type Post Type.
*
* @return object Posts.
*/
public static function get_post_selection( $post_type ) {
$query_args = array(
'post_type' => $post_type,
'posts_per_page' => -1,
'post_status' => 'publish',
);
$all_headers = get_posts( $query_args );
$headers = array();
if ( ! empty( $all_headers ) ) {
$headers = array(
'' => __( 'Select', 'astra-addon' ),
);
foreach ( $all_headers as $i => $data ) {
$headers[ $data->ID ] = $data->post_title;
}
}
return $headers;
}
/**
* Formated rule meta value to save.
*
* @since 1.0.0
* @param array $save_data PostData.
* @param string $key varaible key.
*
* @return array Rule data.
*/
public static function get_format_rule_value( $save_data, $key ) {
$meta_value = array();
if ( isset( $save_data[ $key ]['rule'] ) ) {
$save_data[ $key ]['rule'] = array_unique( $save_data[ $key ]['rule'] );
if ( isset( $save_data[ $key ]['specific'] ) ) {
$save_data[ $key ]['specific'] = array_unique( $save_data[ $key ]['specific'] );
}
// Unset the specifics from rule. This will be readded conditionally in next condition.
$index = array_search( '', $save_data[ $key ]['rule'] );
if ( false !== $index ) {
unset( $save_data[ $key ]['rule'][ $index ] );
}
$index = array_search( 'specifics', $save_data[ $key ]['rule'] );
if ( false !== $index ) {
unset( $save_data[ $key ]['rule'][ $index ] );
// Only re-add the specifics key if there are specific rules added.
if ( isset( $save_data[ $key ]['specific'] ) && is_array( $save_data[ $key ]['specific'] ) ) {
array_push( $save_data[ $key ]['rule'], 'specifics' );
}
}
foreach ( $save_data[ $key ] as $meta_key => $value ) {
if ( ! empty( $value ) ) {
$meta_value[ $meta_key ] = array_map( 'esc_attr', $value );
}
}
if ( ! isset( $meta_value['rule'] ) || ! in_array( 'specifics', $meta_value['rule'] ) ) {
$meta_value['specific'] = array();
}
if ( empty( $meta_value['rule'] ) ) {
$meta_value = array();
}
}
return $meta_value;
}
}
}
/**
* Kicking this off by calling 'get_instance()' method
*/
Astra_Target_Rules_Fields::get_instance();