'Display Type', 'id' => 'wheretodisplay', 'type' => 'select', 'options' => array( 'ad_shortcode' => 'Shortcode (Manual)', 'between_the_content' => 'Between the Content (Automatic)', 'after_the_content' => 'After the Content (Automatic)', 'before_the_content' => 'Before the Content (Automatic)', 'custom_target' => 'Custom Target', 'sticky' => 'Sticky', ), ), array( 'label' => 'Position', 'id' => 'adposition', 'type' => 'select', 'options' => array( '50_of_the_content'=>'50% of the content', 'number_of_paragraph'=>'Number of paragraph', ), ), array( 'label' => 'Count As Per The', 'id' => 'display_tag_name', 'type' => 'select', 'options' => array( 'p_tag'=>'p (default)', 'div_tag'=>'div', 'img_tag'=>'img', 'custom_tag'=>'custom', ), ), array( 'label' => 'Enter Your Tag', 'id' => 'entered_tag_name', 'type' => 'text', 'attributes' => array( 'placeholder' => 'div', ), ), array( 'label' => 'Paragraph', 'id' => 'paragraph_number', 'type' => 'number', ), array( 'label' => 'Manual Ad', 'id' => 'manual_ads_type', 'type' => 'text', 'attributes' => array( 'readonly' => 'readonly', 'disabled' => 'disabled', 'class' => 'afw_manual_ads_type', ), ), array( 'label' => 'Alignment', 'id' => 'adsforwp_ad_align', 'type' => 'radio', 'options' => array( 'left'=>'Left', 'center'=>'Center', 'right' => 'Right' ), ), array( 'label' => 'Position', 'id' => 'adsforwp_custom_target_position', 'type' => 'radio', 'options' => array( 'existing_element'=>'Existing html element', 'new_element'=>'New html element', ), ), array( 'label' => 'jQuery Selector', 'id' => 'adsforwp_jquery_selector', 'type' => 'text', 'attributes' => array( 'placeholder' => '#container_id or .container_id', ), ), array( 'label' => 'New Element', 'id' => 'adsforwp_new_element', 'type' => 'text', ), array( 'label' => 'Action', 'id' => 'adsforwp_existing_element_action', 'type' => 'select', 'options' => array( 'prepend_content'=>'Prepend Content', 'append_content'=>'Append Content', // 'replace_content'=>'Replace Content', // 'replace_element'=>'Replace Element', ) ), array( 'label' => 'Margin', 'id' => 'adsforwp_ad_margin', 'type' => 'multiple-text', 'fields'=> array( array( 'label' => 'Top', 'id' => 'ad_margin_top', 'type' => 'number', ), array( 'label' => 'Bottom', 'id' => 'ad_margin_bottom', 'type' => 'number', ), array( 'label' => 'Left', 'id' => 'ad_margin_left', 'type' => 'number', ), array( 'label' => 'Right', 'id' => 'ad_margin_right', 'type' => 'number', ), ) ) ); public function __construct() { add_action( 'add_meta_boxes', array( $this, 'adsforwp_add_meta_boxes' ) ); add_action( 'save_post', array( $this, 'adsforwp_save_fields' ) ); } public function adsforwp_add_meta_boxes() { foreach ( $this->screen as $single_screen ) { add_meta_box( 'display-metabox', esc_html__( 'Display', 'ads-for-wp' ), array( $this, 'adsforwp_meta_box_callback' ), $single_screen, 'normal', 'high' ); } } public function adsforwp_meta_box_callback( $post ) { wp_nonce_field( 'adsforwp_display_data', 'adsforwp_display_nonce' ); $this->adsforwp_field_generator( $post ); } public function adsforwp_field_generator( $post ) { $output = ''; foreach ( $this->meta_fields as $meta_field ) { $attributes =''; $label = ''; $meta_value = get_post_meta( $post->ID, $meta_field['id'], true ); if ( empty( $meta_value ) ) { if($meta_field['id'] == 'adsforwp_new_element'){ $meta_value = esc_html('
'); }else{ if(isset($meta_field['default'])){ $meta_value = $meta_field['default']; } } } switch ( $meta_field['type'] ) { case 'select': switch ($meta_field['id']) { case 'adposition': $input = sprintf( 'Advance Option'; break; default: $input = sprintf( ''; break; } break; case 'multiple-text': $input ='
'; foreach($meta_field['fields'] as $field){ $margin_value = ''; if(!empty( $meta_value )){ $margin_value = $meta_value[$field['id']]; } $input.= sprintf( '', $meta_field['type'] !== 'color' ? '' : '', $field['id'], $field['id'], $field['type'], $field['label'], $margin_value ); } $input .='
'; break; case 'radio': switch ($meta_field['id']) { case 'adsforwp_ad_align': $input = '
'; $input .= '' . isset($meta_field['label']) . ''; $i = 0; foreach ( $meta_field['options'] as $key => $value ) { $meta_field_value = !is_numeric( $key ) ? $key : $value; $checked =''; if($meta_value==''){ if($key == 'left'){ $checked = 'checked'; } }else{ $checked = $meta_value === $meta_field_value ? 'checked' : ''; } $input .= sprintf( '%s', $checked, $meta_field['id'], $meta_field['id'], $meta_field_value, esc_html__($value, 'ads-for-wp'), $i < count( $meta_field['options'] ) - 1 ? '' : '' ); $i++; } $input .= '
'; break; case 'adsforwp_custom_target_position': $input = '
'; $input .= '' . $meta_field['label'] . ''; $i = 0; foreach ( $meta_field['options'] as $key => $value ) { $meta_field_value = !is_numeric( $key ) ? $key : $value; $input .= sprintf( '%s', $meta_value === $meta_field_value ? 'checked' : '', $meta_field['id'], $meta_field['id'], $meta_field_value, $value, $i < count( $meta_field['options'] ) - 1 ? '' : '' ); $i++; } $input .= '
'; break; default: break; } break; default: if(isset($meta_field['attributes'])){ foreach ( $meta_field['attributes'] as $key => $value ) { $attributes .= $key."=".'"'.$value.'"'.' '; } } $input = sprintf( '', $meta_field['type'] !== 'color' ? '' : '', $meta_field['id'], $meta_field['id'], $meta_field['type'], $meta_value, $attributes ); } $output .= $this->adsforwp_format_rows( $label, $input ); } $common_function_obj = new adsforwp_admin_common_functions(); $allowed_html = $common_function_obj->adsforwp_expanded_allowed_tags(); $in_group = $common_function_obj->adsforwp_check_ads_in_group($post->ID); if(!empty($in_group)){ $group_links = ''; foreach($in_group as $group){ $group_post = get_post($group); $group_links .= ' '.esc_html__($group_post->post_title, 'ads-for-wp').','; } echo '

'.esc_html__('This ad is associated with ', 'ads-for-wp').''.html_entity_decode(esc_html($group_links)).'group

'; echo '' . wp_kses($output, $allowed_html) . '
'; }else{ echo '' . wp_kses($output, $allowed_html) . '
'; } } public function adsforwp_format_rows( $label, $input ) { return ''.$label.''.$input.''; } public function adsforwp_save_fields( $post_id ) { if ( ! isset( $_POST['adsforwp_display_nonce'] ) ) return $post_id; if ( !wp_verify_nonce( $_POST['adsforwp_display_nonce'], 'adsforwp_display_data' ) ) return $post_id; if ( defined( 'DOING_AUTOSAVE' ) && DOING_AUTOSAVE ) return $post_id; $ad_margin = array(); $ad_margin = array_map('sanitize_text_field', $_POST['adsforwp_ad_margin']); update_post_meta($post_id, 'adsforwp_ad_margin', $ad_margin); foreach ( $this->meta_fields as $meta_field ) { if($meta_field['id'] != 'adsforwp_ad_margin'){ if ( isset( $_POST[ $meta_field['id'] ] ) ) { switch ( $meta_field['type'] ) { case 'email': $_POST[ $meta_field['id'] ] = sanitize_email( $_POST[ $meta_field['id'] ] ); break; case 'text': $_POST[ $meta_field['id'] ] = sanitize_text_field( esc_html($_POST[ $meta_field['id'] ])); break; } update_post_meta( $post_id, $meta_field['id'], $_POST[ $meta_field['id'] ] ); } else if ( $meta_field['type'] === 'checkbox' ) { update_post_meta( $post_id, $meta_field['id'], '0' ); } } } } } if (class_exists('adsforwp_view_display')) { new adsforwp_view_display; };