'', 'post_type' => 'post', 'data_type' => 'serialize', 'context' => 'advanced', 'priority' => 'default', 'exclude_post_types' => array(), 'page_templates' => '', 'post_formats' => '', 'show_restore' => false, 'enqueue_webfont' => true, 'async_webfont' => false, 'output_css' => true, 'theme' => 'dark', 'class' => '', 'defaults' => array(), ); /** * Run metabox construct. * * @param mixed $key The metabox key. * @param array $params The metabox parameters. */ public function __construct( $key, $params = array() ) { $this->unique = $key; $this->args = apply_filters( "spf_{$this->unique}_args", wp_parse_args( $params['args'], $this->args ), $this ); $this->sections = apply_filters( "spf_{$this->unique}_sections", $params['sections'], $this ); $this->post_type = ( is_array( $this->args['post_type'] ) ) ? $this->args['post_type'] : array_filter( (array) $this->args['post_type'] ); $this->post_formats = ( is_array( $this->args['post_formats'] ) ) ? $this->args['post_formats'] : array_filter( (array) $this->args['post_formats'] ); $this->page_templates = ( is_array( $this->args['page_templates'] ) ) ? $this->args['page_templates'] : array_filter( (array) $this->args['page_templates'] ); $this->pre_fields = $this->pre_fields( $this->sections ); add_action( 'add_meta_boxes', array( &$this, 'add_meta_box' ) ); add_action( 'save_post', array( &$this, 'save_meta_box' ) ); add_action( 'edit_attachment', array( &$this, 'save_meta_box' ) ); if ( ! empty( $this->page_templates ) || ! empty( $this->post_formats ) || ! empty( $this->args['class'] ) ) { foreach ( $this->post_type as $post_type ) { add_filter( 'postbox_classes_' . $post_type . '_' . $this->unique, array( &$this, 'add_metabox_classes' ) ); } } // wp enqeueu for typography and output css. parent::__construct(); } /** * Instance. * * @param string $key Key of the metabox. * @param array $params Array of parameters. * @return statement */ public static function instance( $key, $params = array() ) { return new self( $key, $params ); } /** * Pre fields * * @param array $sections The sections. * @return statement */ public function pre_fields( $sections ) { $result = array(); foreach ( $sections as $key => $section ) { if ( ! empty( $section['fields'] ) ) { foreach ( $section['fields'] as $field ) { $result[] = $field; } } } return $result; } /** * Add metabox classes. * * @param array $classes The metabox classes. */ public function add_metabox_classes( $classes ) { global $post; if ( ! empty( $this->post_formats ) ) { $saved_post_format = ( is_object( $post ) ) ? get_post_format( $post ) : false; $saved_post_format = ( ! empty( $saved_post_format ) ) ? $saved_post_format : 'default'; $classes[] = 'spf-post-formats'; /** * Sanitize post format for standard to default. */ if ( ( $key = array_search( 'standard', $this->post_formats ) ) !== false ) { $this->post_formats[ $key ] = 'default'; } foreach ( $this->post_formats as $format ) { $classes[] = 'spf-post-format-' . $format; } if ( ! in_array( $saved_post_format, $this->post_formats ) ) { $classes[] = 'spf-hide'; } else { $classes[] = 'spf-show'; } } if ( ! empty( $this->page_templates ) ) { $saved_template = ( is_object( $post ) && ! empty( $post->page_template ) ) ? $post->page_template : 'default'; $classes[] = 'spf-page-templates'; foreach ( $this->page_templates as $template ) { $classes[] = 'spf-page-' . preg_replace( '/[^a-zA-Z0-9]+/', '-', strtolower( $template ) ); } if ( ! in_array( $saved_template, $this->page_templates ) ) { $classes[] = 'spf-hide'; } else { $classes[] = 'spf-show'; } } if ( ! empty( $this->args['class'] ) ) { $classes[] = $this->args['class']; } return $classes; } /** * Add metabox * * @param array $post_type The post types. */ public function add_meta_box( $post_type ) { if ( ! in_array( $post_type, $this->args['exclude_post_types'] ) ) { add_meta_box( $this->unique, $this->args['title'], array( &$this, 'add_meta_box_content' ), $this->post_type, $this->args['context'], $this->args['priority'], $this->args ); } } /** * Get default value. * * @param array $field The field value. * @return mixed */ public function get_default( $field ) { // $default = ( isset( $this->args['defaults'][ $field['id'] ] ) ) ? $this->args['defaults'][ $field['id'] ] : ''; $default = ( isset( $field['id'] ) && isset( $this->args['defaults'][ $field['id'] ] ) ) ? $this->args['defaults'][ $field['id'] ] : null; $default = ( isset( $field['default'] ) ) ? $field['default'] : $default; return $default; } /** * Get meta value. * * @param object $field The field. * @return statement */ public function get_meta_value( $field ) { global $post; $value = null; if ( is_object( $post ) && ! empty( $field['id'] ) ) { if ( 'serialize' !== $this->args['data_type'] ) { $meta = get_post_meta( $post->ID, $field['id'] ); $value = ( isset( $meta[0] ) ) ? $meta[0] : null; } else { $meta = get_post_meta( $post->ID, $this->unique, true ); $value = ( isset( $meta[ $field['id'] ] ) ) ? $meta[ $field['id'] ] : null; } } elseif ( 'tabbed' === $field['type'] ) { $value = get_post_meta( $post->ID, $this->unique, true ); } $default = ( isset( $field['id'] ) ) ? $this->get_default( $field ) : ''; $value = ( isset( $value ) ) ? $value : $default; return $value; } /** * Add metabox content * * @param object $post The post. * @param array $callback The callback function. * @return void */ public function add_meta_box_content( $post, $callback ) { global $post; $has_nav = ( count( $this->sections ) > 1 && 'side' !== $this->args['context'] ) ? true : false; $show_all = ( ! $has_nav ) ? ' spf-show-all' : ''; $errors = ( is_object( $post ) ) ? get_post_meta( $post->ID, '_spf_errors', true ) : array(); $errors = ( ! empty( $errors ) ) ? $errors : array(); $theme = ( $this->args['theme'] ) ? ' spf-theme-' . $this->args['theme'] : ''; // $class = ( $this->args['class'] ) ? ' ' . $this->args['class'] : ''; if ( is_object( $post ) && ! empty( $errors ) ) { delete_post_meta( $post->ID, '_spf_errors' ); } wp_nonce_field( 'spf_pcp_metabox_nonce', 'spf_pcp_metabox_nonce' . $this->unique ); echo '
'; echo '
'; if ( $has_nav ) { echo '
'; echo ''; echo '
'; } echo '
'; echo '
'; $section_key = 1; foreach ( $this->sections as $section ) { $onload = ( ! $has_nav ) ? ' spf-onload' : ''; echo '
'; $section_icon = ( ! empty( $section['icon'] ) ) ? '' : ''; $section_title = ( ! empty( $section['title'] ) ) ? $section['title'] : ''; echo ( $section_title || $section_icon ) ? '

' . esc_html( $section_icon ) . esc_html( $section_title ) . '

' : ''; if ( ! empty( $section['fields'] ) ) { foreach ( $section['fields'] as $field ) { if ( ! empty( $field['id'] ) && ! empty( $errors['fields'][ $field['id'] ] ) ) { $field['_error'] = $errors['fields'][ $field['id'] ]; } SP_PC::field( $field, $this->get_meta_value( $field ), $this->unique, 'metabox' ); } } else { echo '
' . esc_html__( 'No option provided by developer.', 'post-carousel' ) . '
'; } echo '
'; ++$section_key; } echo '
'; echo ' Show Preview'; echo '
'; if ( ! empty( $this->args['show_restore'] ) ) { echo '
'; echo ''; echo '
'; } echo '
'; echo ( $has_nav ) ? '
' : ''; echo '
'; echo '
'; echo '
'; } /** * Save metabox. * * @param array $post_id The post IDs. * @return statement */ public function save_meta_box( $post_id ) { $count = 1; $data = array(); $errors = array(); $noncekey = 'spf_pcp_metabox_nonce' . $this->unique; $nonce = ( ! empty( $_POST[ $noncekey ] ) ) ? sanitize_text_field( wp_unslash( $_POST[ $noncekey ] ) ) : ''; if ( ( defined( 'DOING_AUTOSAVE' ) && DOING_AUTOSAVE ) || ! wp_verify_nonce( $nonce, 'spf_pcp_metabox_nonce' ) ) { return $post_id; } // XSS ok. // No worries, This "POST" requests is sanitizing in the below foreach. // @codingStandardsIgnoreLine $request = ( ! empty( $_POST[ $this->unique ] ) ) ? wp_unslash( $_POST[ $this->unique ] ) : array(); if ( ! empty( $request ) ) { foreach ( $this->sections as $section ) { if ( ! empty( $section['fields'] ) ) { foreach ( $section['fields'] as $field ) { $this->process_field( $field, $request, $count, $data, $errors ); } } ++$count; } } $data = apply_filters( "spf_{$this->unique}_save", $data, $post_id, $this ); do_action( "spf_{$this->unique}_save_before", $data, $post_id, $this ); if ( empty( $data ) || ! empty( $request['_reset'] ) ) { if ( 'serialize' !== $this->args['data_type'] ) { foreach ( $data as $key => $value ) { delete_post_meta( $post_id, $key ); } } else { delete_post_meta( $post_id, $this->unique ); } } else { if ( 'serialize' !== $this->args['data_type'] ) { foreach ( $data as $key => $value ) { update_post_meta( $post_id, $key, $value ); } } else { update_post_meta( $post_id, $this->unique, $data ); } if ( ! empty( $errors ) ) { update_post_meta( $post_id, '_spf_errors_' . $this->unique, $errors ); } } do_action( "spf_{$this->unique}_saved", $data, $post_id, $this ); do_action( "spf_{$this->unique}_save_after", $data, $post_id, $this ); } /** * Process a field, handling tabbed fields if applicable. * * @param array $field The field configuration. * @param array $request The POST request data. * @param int $count The count value. * @param array $data The data array to be populated. * @param array $errors The errors array to be populated. */ public function process_field( $field, $request, $count, &$data, &$errors ) { if ( 'tabbed' === $field['type'] && ! empty( $field['tabs'] ) ) { foreach ( $field['tabs'] as $tab ) { if ( ! empty( $tab['fields'] ) ) { foreach ( $tab['fields'] as $tab_field ) { $this->process_single_field( $tab_field, $request, $count, $data, $errors ); } } } } else { $this->process_single_field( $field, $request, $count, $data, $errors ); } } /** * Process a single field, sanitizing and validating its value. * * @param array $field The field configuration. * @param array $request The POST request data. * @param int $count The count value. * @param array $data The data array to be populated. * @param array $errors The errors array to be populated. */ public function process_single_field( $field, $request, $count, &$data, &$errors ) { if ( ! empty( $field['id'] ) && ! ( isset( $field['only_pro'] ) ) ) { $field_id = $field['id']; $field_value = isset( $request[ $field_id ] ) ? $request[ $field_id ] : ''; // Sanitize "post" request of field. if ( isset( $field['sanitize'] ) && is_callable( $field['sanitize'] ) ) { $data[ $field_id ] = call_user_func( $field['sanitize'], $field_value ); } else { $data[ $field_id ] = ( is_array( $field_value ) ) ? wp_kses_post_deep( $field_value ) : wp_kses_post( $field_value ); } // Validate "post" request of field. if ( isset( $field['validate'] ) && is_callable( $field['validate'] ) ) { $has_validated = call_user_func( $field['validate'], $field_value ); if ( ! empty( $has_validated ) ) { $errors['sections'][ $count ] = true; $errors['fields'][ $field_id ] = $has_validated; $data[ $field_id ] = $this->get_meta_value( $field ); } } } } } }