* @copyright Copyright (c) 2012, Derek Herman * @since 2.0 /** * Builds the HTML for each of the available option types by calling those * function with call_user_func and passing the arguments to the second param. * * All fields are required! * * @param array $args The array of arguments are as follows: * @param string $type Type of option. * @param string $field_id The field ID. * @param string $field_name The field Name. * @param mixed $field_value The field value is a string or an array of values. * @param string $field_desc The field description. * @param string $field_std The standard value. * @param string $field_class Extra CSS classes. * @param array $field_choices The array of option choices. * @param array $field_settings The array of settings for a list item. * @return string * * @access public * @since 2.0 if ( ! function_exists( 'ot_display_by_type' ) ) { function ot_display_by_type( $args = array() ) { /* allow filters to be executed on the array apply_filters( 'ot_display_by_type', $args ); /* build the function name $function_name_by_type = str_replace( '-', '_', 'ot_type_' . $args['type'] ); /* call the function & pass in arguments array if ( function_exists( $function_name_by_type ) ) { call_user_func( $function_name_by_type, $args ); } else { echo '

' . __( 'Sorry, this function does not exist', 'option-tree' ) . '

'; } } } /** * Background option type. * * See @ot_display_by_type to see the full list of available arguments. * * @param array An array of arguments. * @return string * * @access public * @since 2.0 if ( ! function_exists( 'ot_type_background' ) ) { function ot_type_background( $args = array() ) { /* turns arguments array into variables extract( $args ); /* verify a description $has_desc = $field_desc ? true : false; /* format setting outer wrapper echo '
'; /* description echo $has_desc ? '
' . htmlspecialchars_decode( $field_desc ) . '
' : ''; /* format setting inner wrapper echo '
'; /* build background colorpicker echo '
'; /* colorpicker JS echo ''; /* set background color $background_color = isset( $field_value['background-color'] ) ? esc_attr( $field_value['background-color'] ) : ''; /* set border color $border_color = in_array( $background_color, array( '#FFFFFF', '#FFF', '#ffffff', '#fff' ) ) ? '#ccc' : $background_color; /* input echo ''; echo '
'; echo '
'; echo '
'; /* build background repeat $background_repeat = isset( $field_value['background-repeat'] ) ? esc_attr( $field_value['background-repeat'] ) : ''; echo ''; /* build background attachment $background_attachment = isset( $field_value['background-attachment'] ) ? esc_attr( $field_value['background-attachment'] ) : ''; echo ''; /* build background position $background_position = isset( $field_value['background-position'] ) ? esc_attr( $field_value['background-position'] ) : ''; echo ''; echo '
'; /* build background image echo '
'; /* input echo ''; /* add media button echo '' . __( 'Add Media', 'option-tree' ) . ''; echo '
'; /* media if ( isset( $field_value['background-image'] ) && $field_value['background-image'] !== '' ) { echo '
'; if ( preg_match( '/\.(?:jpe?g|png|gif|ico)$/i', $field_value['background-image'] ) ) echo '
'; echo '' . __( 'Remove Media', 'option-tree' ) . ''; echo '
'; } echo '
'; echo '
'; } } /** * Category Checkbox option type. * * See @ot_display_by_type to see the full list of available arguments. * * @param array An array of arguments. * @return string * * @access public * @since 2.0 if ( ! function_exists( 'ot_type_category_checkbox' ) ) { function ot_type_category_checkbox( $args = array() ) { /* turns arguments array into variables extract( $args ); /* verify a description $has_desc = $field_desc ? true : false; /* format setting outer wrapper echo '
'; /* description echo $has_desc ? '
' . htmlspecialchars_decode( $field_desc ) . '
' : ''; /* format setting inner wrapper echo '
'; /* get category array $categories = get_categories( array( 'hide_empty' => false ) ); /* build categories if ( ! empty( $categories ) ) { $count = 0; foreach ( $categories as $category ) { echo '

'; echo 'term_id, false ) : '' ) . ' class="option-tree-ui-checkbox ' . esc_attr( $field_class ) . '" />'; echo ''; echo '

'; $count++; } } else { echo '

' . __( 'No Categories Found', 'option-tree' ) . '

'; } echo '
'; echo '
'; } } /** * Category Select option type. * * See @ot_display_by_type to see the full list of available arguments. * * @param array An array of arguments. * @return string * * @access public * @since 2.0 if ( ! function_exists( 'ot_type_category_select' ) ) { function ot_type_category_select( $args = array() ) { /* turns arguments array into variables extract( $args ); /* verify a description $has_desc = $field_desc ? true : false; /* format setting outer wrapper echo '
'; /* description echo $has_desc ? '
' . htmlspecialchars_decode( $field_desc ) . '
' : ''; /* format setting inner wrapper echo '
'; /* build category echo ''; echo '
'; echo '
'; } } /** * Checkbox option type. * * See @ot_display_by_type to see the full list of available arguments. * * @param array An array of arguments. * @return string * * @access public * @since 2.0 if ( ! function_exists( 'ot_type_checkbox' ) ) { function ot_type_checkbox( $args = array() ) { /* turns arguments array into variables extract( $args ); /* verify a description $has_desc = $field_desc ? true : false; /* format setting outer wrapper echo '
'; /* description echo $has_desc ? '
' . htmlspecialchars_decode( $field_desc ) . '
' : ''; /* format setting inner wrapper echo '
'; /* build checkbox foreach ( (array) $field_choices as $key => $choice ) { if ( isset( $choice['value'] ) && isset( $choice['label'] ) ) { echo '

'; echo ''; echo ''; echo '

'; } } echo '
'; echo '
'; } } /** * Colorpicker option type. * * See @ot_display_by_type to see the full list of available arguments. * * @param array An array of arguments. * @return string * * @access public * @since 2.0 if ( ! function_exists( 'ot_type_colorpicker' ) ) { function ot_type_colorpicker( $args = array() ) { /* turns arguments array into variables extract( $args ); /* verify a description $has_desc = $field_desc ? true : false; /* format setting outer wrapper echo '
'; /* description echo $has_desc ? '
' . htmlspecialchars_decode( $field_desc ) . '
' : ''; /* format setting inner wrapper echo '
'; /* build colorpicker echo '
'; /* colorpicker JS echo ''; /* input echo ''; /* set border color $border_color = in_array( $field_value, array( '#FFFFFF', '#FFF', '#ffffff', '#fff' ) ) ? '#ccc' : esc_attr( $field_value ); echo '
'; echo '
'; echo '
'; echo '
'; } } /** * CSS option type. * * See @ot_display_by_type to see the full list of available arguments. * * @param array An array of arguments. * @return string * * @access public * @since 2.0 if ( ! function_exists( 'ot_type_css' ) ) { function ot_type_css( $args = array() ) { /* turns arguments array into variables extract( $args ); /* verify a description $has_desc = $field_desc ? true : false; /* format setting outer wrapper echo '
'; /* description echo $has_desc ? '
' . htmlspecialchars_decode( $field_desc ) . '
' : ''; /* format setting inner wrapper echo '
'; /* build textarea for CSS echo ''; echo '
'; echo '
'; } } /** * Custom Post Type Checkbox option type. * * See @ot_display_by_type to see the full list of available arguments. * * @param array An array of arguments. * @return string * * @access public * @since 2.0 if ( ! function_exists( 'ot_type_custom_post_type_checkbox' ) ) { function ot_type_custom_post_type_checkbox( $args = array() ) { /* turns arguments array into variables extract( $args ); /* verify a description $has_desc = $field_desc ? true : false; /* format setting outer wrapper echo '
'; /* description echo $has_desc ? '
' . htmlspecialchars_decode( $field_desc ) . '
' : ''; /* format setting inner wrapper echo '
'; /* setup the post types $post_type = isset( $field_post_type ) ? explode( ',', $field_post_type ) : array( 'post' ); /* query posts array $query = new WP_Query( array( 'post_type' => $post_type, 'posts_per_page' => -1, 'orderby' => 'title', 'order' => 'ASC', 'post_status' => 'any' ) ); /* has posts if ( $query->have_posts() ) { $count = 0; while ( $query->have_posts() ) { $query->the_post(); echo '

'; echo ''; echo ''; echo '

'; $count++; } } else { echo '

' . __( 'No Posts Found', 'option-tree' ) . '

'; } echo '
'; echo '
'; } } /** * Custom Post Type Select option type. * * See @ot_display_by_type to see the full list of available arguments. * * @param array An array of arguments. * @return string * * @access public * @since 2.0 if ( ! function_exists( 'ot_type_custom_post_type_select' ) ) { function ot_type_custom_post_type_select( $args = array() ) { /* turns arguments array into variables extract( $args ); /* verify a description $has_desc = $field_desc ? true : false; /* format setting outer wrapper echo '
'; /* description echo $has_desc ? '
' . htmlspecialchars_decode( $field_desc ) . '
' : ''; /* format setting inner wrapper echo '
'; /* build category echo ''; echo '
'; echo '
'; } } /** * List Item option type. * * See @ot_display_by_type to see the full list of available arguments. * * @param array An array of arguments. * @return string * * @access public * @since 2.0 if ( ! function_exists( 'ot_type_list_item' ) ) { function ot_type_list_item( $args = array() ) { /* turns arguments array into variables extract( $args ); /* verify a description $has_desc = $field_desc ? true : false; /* format setting outer wrapper echo '
'; /* description echo $has_desc ? '
' . htmlspecialchars_decode( $field_desc ) . '
' : ''; /* format setting inner wrapper echo '
'; /* pass the settings array arround echo ''; /** * settings pages have array wrappers like 'option_tree'. * So we need that value to create a proper array to save to. * This is only for NON metaboxes settings. if ( ! isset( $get_option ) ) $get_option = ''; /* build list items echo ''; /* button echo '' . __( 'Add New', 'option-tree' ) . ''; /* description echo '
' . __( 'You can re-order with drag & drop, the order will update after saving.', 'option-tree' ) . '
'; echo '
'; echo '
'; } } /** * Measurement option type. * * See @ot_display_by_type to see the full list of available arguments. * * @param array An array of arguments. * @return string * * @access public * @since 2.0 if ( ! function_exists( 'ot_type_measurement' ) ) { function ot_type_measurement( $args = array() ) { /* turns arguments array into variables extract( $args ); /* verify a description $has_desc = $field_desc ? true : false; /* format setting outer wrapper echo '
'; /* description echo $has_desc ? '
' . htmlspecialchars_decode( $field_desc ) . '
' : ''; /* format setting inner wrapper echo '
'; echo '
'; echo ''; echo '
'; /* build measurement echo ''; echo '
'; echo '
'; } } /** * Page Checkbox option type. * * See @ot_display_by_type to see the full list of available arguments. * * @param array An array of arguments. * @return string * * @access public * @since 2.0 if ( ! function_exists( 'ot_type_page_checkbox' ) ) { function ot_type_page_checkbox( $args = array() ) { /* turns arguments array into variables extract( $args ); /* verify a description $has_desc = $field_desc ? true : false; /* format setting outer wrapper echo '
'; /* description echo $has_desc ? '
' . htmlspecialchars_decode( $field_desc ) . '
' : ''; /* format setting inner wrapper echo '
'; /* query pages array $query = new WP_Query( array( 'post_type' => array( 'page' ), 'posts_per_page' => -1, 'orderby' => 'title', 'order' => 'ASC', 'post_status' => 'any' ) ); /* has pages if ( $query->have_posts() ) { $count = 0; while ( $query->have_posts() ) { $query->the_post(); echo '

'; echo ''; echo ''; echo '

'; $count++; } } else { echo '

' . __( 'No Pages Found', 'option-tree' ) . '

'; } echo '
'; echo '
'; } } /** * Page Select option type. * * See @ot_display_by_type to see the full list of available arguments. * * @param array An array of arguments. * @return string * * @access public * @since 2.0 if ( ! function_exists( 'ot_type_page_select' ) ) { function ot_type_page_select( $args = array() ) { /* turns arguments array into variables extract( $args ); /* verify a description $has_desc = $field_desc ? true : false; /* format setting outer wrapper echo '
'; /* description echo $has_desc ? '
' . htmlspecialchars_decode( $field_desc ) . '
' : ''; /* format setting inner wrapper echo '
'; /* build page select echo ''; echo '
'; echo '
'; } } /** * List Item option type. * * See @ot_display_by_type to see the full list of available arguments. * * @param array An array of arguments. * @return string * * @access public * @since 2.0 if ( ! function_exists( 'ot_type_slider' ) ) { function ot_type_slider( $args = array() ) { /* turns arguments array into variables extract( $args ); /* verify a description $has_desc = $field_desc ? true : false; /* format setting outer wrapper echo '
'; /* description echo $has_desc ? '
' . htmlspecialchars_decode( $field_desc ) . '
' : ''; /* format setting inner wrapper echo '
'; /* pass the settings array arround echo ''; /** * settings pages have array wrappers like 'option_tree'. * So we need that value to create a proper array to save to. * This is only for NON metaboxes settings. if ( ! isset( $get_option ) ) $get_option = ''; /* build list items echo ''; /* button echo '' . __( 'Add New', 'option-tree' ) . ''; /* description echo '
' . __( 'You can re-order with drag & drop, the order will update after saving.', 'option-tree' ) . '
'; echo '
'; echo '
'; } } /** * Post Checkbox option type. * * See @ot_display_by_type to see the full list of available arguments. * * @param array An array of arguments. * @return string * * @access public * @since 2.0 if ( ! function_exists( 'ot_type_post_checkbox' ) ) { function ot_type_post_checkbox( $args = array() ) { /* turns arguments array into variables extract( $args ); /* verify a description $has_desc = $field_desc ? true : false; /* format setting outer wrapper echo '
'; /* description echo $has_desc ? '
' . htmlspecialchars_decode( $field_desc ) . '
' : ''; /* format setting inner wrapper echo '
'; /* query posts array $query = new WP_Query( array( 'post_type' => array( 'post' ), 'posts_per_page' => -1, 'orderby' => 'title', 'order' => 'ASC', 'post_status' => 'any' ) ); /* has posts if ( $query->have_posts() ) { $count = 0; while ( $query->have_posts() ) { $query->the_post(); echo '

'; echo ''; echo ''; echo '

'; $count++; } } else { echo '

' . __( 'No Posts Found', 'option-tree' ) . '

'; } echo '
'; echo '
'; } } /** * Post Select option type. * * See @ot_display_by_type to see the full list of available arguments. * * @param array An array of arguments. * @return string * * @access public * @since 2.0 if ( ! function_exists( 'ot_type_post_select' ) ) { function ot_type_post_select( $args = array() ) { /* turns arguments array into variables extract( $args ); /* verify a description $has_desc = $field_desc ? true : false; /* format setting outer wrapper echo '
'; /* description echo $has_desc ? '
' . htmlspecialchars_decode( $field_desc ) . '
' : ''; /* format setting inner wrapper echo '
'; /* build page select echo ''; echo '
'; echo '
'; } } /** * Radio option type. * * See @ot_display_by_type to see the full list of available arguments. * * @param array An array of arguments. * @return string * * @access public * @since 2.0 if ( ! function_exists( 'ot_type_radio' ) ) { function ot_type_radio( $args = array() ) { /* turns arguments array into variables extract( $args ); /* verify a description $has_desc = $field_desc ? true : false; /* format setting outer wrapper echo '
'; /* description echo $has_desc ? '
' . htmlspecialchars_decode( $field_desc ) . '
' : ''; /* format setting inner wrapper echo '
'; /* build radio foreach ( (array) $field_choices as $key => $choice ) { echo '

'; } echo '
'; echo '
'; } } /** * Radio Images option type. * * See @ot_display_by_type to see the full list of available arguments. * * @param array An array of arguments. * @return string * * @access public * @since 2.0 if ( ! function_exists( 'ot_type_radio_image' ) ) { function ot_type_radio_image( $args = array() ) { /* turns arguments array into variables extract( $args ); /* verify a description $has_desc = $field_desc ? true : false; /* format setting outer wrapper echo '
'; /* description echo $has_desc ? '
' . htmlspecialchars_decode( $field_desc ) . '
' : ''; /* format setting inner wrapper echo '
'; /** * load the default filterable images if nothing * has been set in the choices array. if ( empty( $field_choices ) ) $field_choices = ot_radio_images( $field_id ); /* build radio image foreach ( (array) $field_choices as $key => $choice ) { echo '
'; echo '

'; echo '' . esc_attr( $choice['label'] ) .''; echo '
'; } echo '
'; echo '
'; } } /** * Select option type. * * See @ot_display_by_type to see the full list of available arguments. * * @param array An array of arguments. * @return string * * @access public * @since 2.0 if ( ! function_exists( 'ot_type_select' ) ) { function ot_type_select( $args = array() ) { /* turns arguments array into variables extract( $args ); /* verify a description $has_desc = $field_desc ? true : false; /* format setting outer wrapper echo '
'; /* description echo $has_desc ? '
' . htmlspecialchars_decode( $field_desc ) . '
' : ''; /* format setting inner wrapper echo '
'; /* build select echo ''; echo '
'; echo '
'; } } /** * Tag Checkbox option type. * * See @ot_display_by_type to see the full list of available arguments. * * @param array An array of arguments. * @return string * * @access public * @since 2.0 if ( ! function_exists( 'ot_type_tag_checkbox' ) ) { function ot_type_tag_checkbox( $args = array() ) { /* turns arguments array into variables extract( $args ); /* verify a description $has_desc = $field_desc ? true : false; /* format setting outer wrapper echo '
'; /* description echo $has_desc ? '
' . htmlspecialchars_decode( $field_desc ) . '
' : ''; /* format setting inner wrapper echo '
'; /* get tags $tags = get_tags( array( 'hide_empty' => false ) ); /* has tags if ( $tags ) { $count = 0; foreach( $tags as $tag ) { echo '

'; echo 'term_id, false ) : '' ) . ' class="option-tree-ui-checkbox ' . esc_attr( $field_class ) . '" />'; echo ''; echo '

'; $count++; } } else { echo '

' . __( 'No Tags Found', 'option-tree' ) . '

'; } echo '
'; echo '
'; } } /** * Tag Select option type. * * See @ot_display_by_type to see the full list of available arguments. * * @param array An array of arguments. * @return string * * @access public * @since 2.0 if ( ! function_exists( 'ot_type_tag_select' ) ) { function ot_type_tag_select( $args = array() ) { /* turns arguments array into variables extract( $args ); /* verify a description $has_desc = $field_desc ? true : false; /* format setting outer wrapper echo '
'; /* description echo $has_desc ? '
' . htmlspecialchars_decode( $field_desc ) . '
' : ''; /* format setting inner wrapper echo '
'; /* build tag select echo ''; echo '
'; echo '
'; } } /** * Taxonomy Checkbox option type. * * See @ot_display_by_type to see the full list of available arguments. * * @param array An array of arguments. * @return string * * @access public * @since 2.0 if ( ! function_exists( 'ot_type_taxonomy_checkbox' ) ) { function ot_type_taxonomy_checkbox( $args = array() ) { /* turns arguments array into variables extract( $args ); /* verify a description $has_desc = $field_desc ? true : false; /* format setting outer wrapper echo '
'; /* description echo $has_desc ? '
' . htmlspecialchars_decode( $field_desc ) . '
' : ''; /* format setting inner wrapper echo '
'; /* setup the taxonomy $taxonomy = isset( $field_taxonomy ) ? explode( ',', $field_taxonomy ) : array( 'category' ); /* get taxonomies $taxonomies = get_categories( array( 'hide_empty' => false, 'taxonomy' => $taxonomy ) ); /* has tags if ( $taxonomies ) { $count = 0; foreach( $taxonomies as $taxonomy ) { echo '

'; echo 'term_id, false ) : '' ) . ' class="option-tree-ui-checkbox ' . esc_attr( $field_class ) . '" />'; echo ''; echo '

'; $count++; } } else { echo '

' . __( 'No Taxonomies Found', 'option-tree' ) . '

'; } echo '
'; echo '
'; } } /** * Taxonomy Select option type. * * See @ot_display_by_type to see the full list of available arguments. * * @param array An array of arguments. * @return string * * @access public * @since 2.0 if ( ! function_exists( 'ot_type_taxonomy_select' ) ) { function ot_type_taxonomy_select( $args = array() ) { /* turns arguments array into variables extract( $args ); /* verify a description $has_desc = $field_desc ? true : false; /* format setting outer wrapper echo '
'; /* description echo $has_desc ? '
' . htmlspecialchars_decode( $field_desc ) . '
' : ''; /* format setting inner wrapper echo '
'; /* build tag select echo ''; echo '
'; echo '
'; } } /** * Text option type. * * See @ot_display_by_type to see the full list of available arguments. * * @param array An array of arguments. * @return string * * @access public * @since 2.0 if ( ! function_exists( 'ot_type_text' ) ) { function ot_type_text( $args = array() ) { /* turns arguments array into variables extract( $args ); /* verify a description $has_desc = $field_desc ? true : false; /* format setting outer wrapper echo '
'; /* description echo $has_desc ? '
' . htmlspecialchars_decode( $field_desc ) . '
' : ''; /* format setting inner wrapper echo '
'; /* build text input echo ''; echo '
'; echo '
'; } } /** * Textarea option type. * * See @ot_display_by_type to see the full list of available arguments. * * @param array An array of arguments. * @return string * * @access public * @since 2.0 if ( ! function_exists( 'ot_type_textarea' ) ) { function ot_type_textarea( $args = array() ) { /* turns arguments array into variables extract( $args ); /* verify a description $has_desc = $field_desc ? true : false; /* format setting outer wrapper echo '
'; /* description echo $has_desc ? '
' . htmlspecialchars_decode( $field_desc ) . '
' : ''; /* format setting inner wrapper echo '
'; /* build textarea wp_editor( $field_value, esc_attr( $field_id ), array( 'editor_class' => esc_attr( $field_class ), 'wpautop' => apply_filters( 'ot_wpautop', false, $field_id ), 'media_buttons' => apply_filters( 'ot_media_buttons', true, $field_id ), 'textarea_name' => esc_attr( $field_name ), 'textarea_rows' => esc_attr( $field_rows ), 'tinymce' => apply_filters( 'ot_tinymce', true, $field_id ), 'quicktags' => apply_filters( 'ot_quicktags', array( 'buttons' => 'strong,em,link,block,del,ins,img,ul,ol,li,code,spell,close' ), $field_id ) ) ); echo '
'; echo '
'; } } /** * Textarea Simple option type. * * See @ot_display_by_type to see the full list of available arguments. * * @param array An array of arguments. * @return string * * @access public * @since 2.0 if ( ! function_exists( 'ot_type_textarea_simple' ) ) { function ot_type_textarea_simple( $args = array() ) { /* turns arguments array into variables extract( $args ); /* verify a description $has_desc = $field_desc ? true : false; /* format setting outer wrapper echo '
'; /* description echo $has_desc ? '
' . htmlspecialchars_decode( $field_desc ) . '
' : ''; /* format setting inner wrapper echo '
'; /* filter to allow wpautop $wpautop = apply_filters( 'ot_wpautop', false, $field_id ); /* wpautop $field_value if ( $wpautop == true ) $field_value = wpautop( $field_value ); /* build textarea simple echo ''; echo '
'; echo '
'; } } /** * Textblock option type. * * See @ot_display_by_type to see the full list of available arguments. * * @param array An array of arguments. * @return string * * @access public * @since 2.0 if ( ! function_exists( 'ot_type_textblock' ) ) { function ot_type_textblock( $args = array() ) { /* turns arguments array into variables extract( $args ); /* format setting outer wrapper echo '
'; /* description echo '
' . htmlspecialchars_decode( $field_desc ) . '
'; echo '
'; } } /** * Textblock Titled option type. * * See @ot_display_by_type to see the full list of available arguments. * * @param array An array of arguments. * @return string * * @access public * @since 2.0 if ( ! function_exists( 'ot_type_textblock_titled' ) ) { function ot_type_textblock_titled( $args = array() ) { /* turns arguments array into variables extract( $args ); /* format setting outer wrapper echo '
'; /* description echo '
' . htmlspecialchars_decode( $field_desc ) . '
'; echo '
'; } } /** * Typography option type. * * See @ot_display_by_type to see the full list of available arguments. * * @param array An array of arguments. * @return string * * @access public * @since 2.0 if ( ! function_exists( 'ot_type_typography' ) ) { function ot_type_typography( $args = array() ) { /* turns arguments array into variables extract( $args ); /* verify a description $has_desc = $field_desc ? true : false; /* format setting outer wrapper echo '
'; /* description echo $has_desc ? '
' . htmlspecialchars_decode( $field_desc ) . '
' : ''; /* format setting inner wrapper echo '
'; /* allow fields to be filtered $ot_recognized_typography_fields = apply_filters( 'ot_recognized_typography_fields', array( 'font-color', 'font-family', 'font-size', 'font-style', 'font-variant', 'font-weight', 'letter-spacing', 'line-height', 'text-decoration', 'text-transform' ), $field_id ); /* build background colorpicker if ( in_array( 'font-color', $ot_recognized_typography_fields ) ) { echo '
'; /* colorpicker JS echo ''; /* set background color $background_color = isset( $field_value['font-color'] ) ? esc_attr( $field_value['font-color'] ) : ''; /* set border color $border_color = in_array( $background_color, array( '#FFFFFF', '#FFF', '#ffffff', '#fff' ) ) ? '#ccc' : $background_color; /* input echo ''; echo '
'; echo '
'; } /* build font family if ( in_array( 'font-family', $ot_recognized_typography_fields ) ) { $font_family = isset( $field_value['font-family'] ) ? $field_value['font-family'] : ''; echo ''; } /* build font size if ( in_array( 'font-size', $ot_recognized_typography_fields ) ) { $font_size = isset( $field_value['font-size'] ) ? esc_attr( $field_value['font-size'] ) : ''; echo ''; } /* build font style if ( in_array( 'font-style', $ot_recognized_typography_fields ) ) { $font_style = isset( $field_value['font-style'] ) ? esc_attr( $field_value['font-style'] ) : ''; echo ''; } /* build font variant if ( in_array( 'font-variant', $ot_recognized_typography_fields ) ) { $font_variant = isset( $field_value['font-variant'] ) ? esc_attr( $field_value['font-variant'] ) : ''; echo ''; } /* build font weight if ( in_array( 'font-weight', $ot_recognized_typography_fields ) ) { $font_weight = isset( $field_value['font-weight'] ) ? esc_attr( $field_value['font-weight'] ) : ''; echo ''; } /* build letter spacing if ( in_array( 'letter-spacing', $ot_recognized_typography_fields ) ) { $letter_spacing = isset( $field_value['letter-spacing'] ) ? esc_attr( $field_value['letter-spacing'] ) : ''; echo ''; } /* build line height if ( in_array( 'line-height', $ot_recognized_typography_fields ) ) { $line_height = isset( $field_value['line-height'] ) ? esc_attr( $field_value['line-height'] ) : ''; echo ''; } /* build text decoration if ( in_array( 'text-decoration', $ot_recognized_typography_fields ) ) { $text_decoration = isset( $field_value['text-decoration'] ) ? esc_attr( $field_value['text-decoration'] ) : ''; echo ''; } /* build text transform if ( in_array( 'text-transform', $ot_recognized_typography_fields ) ) { $text_transform = isset( $field_value['text-transform'] ) ? esc_attr( $field_value['text-transform'] ) : ''; echo ''; } echo '
'; echo '
'; } } /** * Upload option type. * * See @ot_display_by_type to see the full list of available arguments. * * @param array An array of arguments. * @return string * * @access public * @since 2.0 if ( ! function_exists( 'ot_type_upload' ) ) { function ot_type_upload( $args = array() ) { /* turns arguments array into variables extract( $args ); /* verify a description $has_desc = $field_desc ? true : false; /* format setting outer wrapper echo '
'; /* description echo $has_desc ? '
' . htmlspecialchars_decode( $field_desc ) . '
' : ''; /* format setting inner wrapper echo '
'; /* build upload echo '
'; /* input echo ''; /* add media button echo '' . __( 'Add Media', 'option-tree' ) . ''; echo '
'; /* media if ( $field_value ) { echo '
'; if ( preg_match( '/\.(?:jpe?g|png|gif|ico)$/i', $field_value ) ) echo '
'; echo '' . __( 'Remove Media', 'option-tree' ) . ''; echo '
'; } echo '
'; echo '
'; } } if ( ! defined( 'OT_VERSION') ) exit( 'No direct script access allowed' ); /** * OptionTree Settings API * * This class loads all the methods and helpers specific to a Settings page. * * @package OptionTree * @author Derek Herman * @copyright Copyright (c) 2012, Derek Herman if ( ! class_exists( 'OT_Settings' ) ) { class OT_Settings { /* the options array private $options; /* hooks for targeting admin pages private $page_hook; /** * Constructor * * @param array An array of options * @return void * * @access public * @since 2.0 public function __construct( $args ) { $this->options = $args; /* return early if not viewing an admin page or no options if ( ! is_admin() || ! is_array( $this->options ) ) return false; /* load everything $this->hooks(); } /** * Execute the WordPress Hooks * * @return void * * @access public * @since 2.0 public function hooks() { /* add pages & menu items add_action( 'admin_menu', array( &$this, 'add_page' ) ); /* register sections add_action( 'admin_init', array( &$this, 'add_sections' ) ); /* register settings add_action( 'admin_init', array( &$this, 'add_settings' ) ); /* reset options add_action( 'admin_init', array( &$this, 'reset_options' ), 10 ); /* initialize settings add_action( 'admin_init', array( &$this, 'initialize_settings' ), 11 ); } /** * Loads each admin page * * @return void * * @access public * @since 2.0 public function add_page() { /* loop through options foreach( (array) $this->options as $option ) { /* loop through pages foreach( (array) $this->get_pages( $option ) as $page ) { /** * Theme Check... stop nagging me about this kind of stuff. * The damn admin pages are required for OT to function, duh! $theme_check_bs = 'add_menu_page'; $theme_check_bs2 = 'add_submenu_page'; /* load page in WP top level menu if ( ! isset( $page['parent_slug'] ) || empty( $page['parent_slug'] ) ) { $page_hook = $theme_check_bs( $page['page_title'], $page['menu_title'], $page['capability'], $page['menu_slug'], array( &$this, 'display_page' ), $page['icon_url'], $page['position'] ); /* load page in WP sub menu } else { $page_hook = $theme_check_bs2( $page['parent_slug'], $page['page_title'], $page['menu_title'], $page['capability'], $page['menu_slug'], array( &$this, 'display_page' ) ); } /* only load if not a hidden page if ( ! isset( $page['hidden_page'] ) ) { /* associate $page_hook with page id $this->page_hook[$page['id']] = $page_hook; /* add scripts add_action( 'admin_print_scripts-' . $page_hook, array( &$this, 'scripts' ) ); /* add styles add_action( 'admin_print_styles-' . $page_hook, array( &$this, 'styles' ) ); /* add contextual help add_action( 'load-' . $page_hook, array( &$this, 'help' ) ); } } } return false; } /** * Loads the scripts * * @return void * * @access public * @since 2.0 public function scripts() { ot_admin_scripts(); } /** * Loads the styles * * @return void * * @access public * @since 2.0 public function styles() { ot_admin_styles(); } /** * Loads the contextual help for each page * * @return void * * @access public * @since 2.0 public function help() { $screen = get_current_screen(); /* loop through options foreach( (array) $this->options as $option ) { /* loop through pages foreach( (array) $this->get_pages( $option ) as $page ) { /* verify page if ( ! isset( $page['hidden_page'] ) && $screen->id == $this->page_hook[$page['id']] ) { /* set up the help tabs if ( ! empty( $page['contextual_help']['content'] ) ) { foreach( $page['contextual_help']['content'] as $contextual_help ) { $screen->add_help_tab( array( 'id' => esc_attr( $contextual_help['id'] ), 'title' => esc_attr( $contextual_help['title'] ), 'content' => htmlspecialchars_decode( $contextual_help['content'] ), ) ); } } /* set up the help sidebar if ( ! empty( $page['contextual_help']['sidebar'] ) ) { $screen->set_help_sidebar( htmlspecialchars_decode( $page['contextual_help']['sidebar'] ) ); } } } } return false; } /** * Loads the content for each page * * @return string * * @access public * @since 2.0 public function display_page() { $screen = get_current_screen(); /* loop through settings foreach( (array) $this->options as $option ) { /* loop through pages foreach( (array) $this->get_pages( $option ) as $page ) { /* verify page if ( ! isset( $page['hidden_page'] ) && $screen->id == $this->page_hook[$page['id']] ) { $show_buttons = isset( $page['show_buttons'] ) && $page['show_buttons'] == false ? false : true; /* update active layout content if ( isset( $_REQUEST['settings-updated'] ) && $_REQUEST['settings-updated'] == 'true' ) { $layouts = get_option( 'option_tree_layouts' ); /* has active layout if ( isset( $layouts['active_layout'] ) ) { $option_tree = get_option( $option['id'] ); $layouts[$layouts['active_layout']] = ot_encode( serialize( $option_tree ) ); update_option( 'option_tree_layouts', $layouts ); } } echo '
'; screen_icon( ( isset( $page['screen_icon'] ) ? $page['screen_icon'] : 'options-general' ) ); echo '

' . $page['page_title'] . '

'; echo ot_alert_message( $page ); settings_errors( 'option-tree' ); /* Header echo '
'; echo '
    '; echo ''; echo '
  • Version ' . OT_VERSION . '
  • '; echo '
'; /* layouts form if ( $page['id'] == 'ot_theme_options' && OT_SHOW_NEW_LAYOUT == true ) ot_theme_options_layouts_form(); echo '
'; /* remove forms on the custom settings pages if ( $show_buttons ) { echo '
'; settings_fields( $option['id'] ); } else { echo '
'; } /* Sub Header echo '
'; if ( $show_buttons ) echo ''; echo '
'; /* Navigation echo '
'; /* check for sections if ( isset( $page['sections'] ) && count( $page['sections'] ) > 0 ) { echo '
    '; /* loop through page sections foreach( (array) $page['sections'] as $section ) { echo '
  • ' . $section['title'] . '
  • '; } echo '
'; } /* sections echo '
'; echo '
'; echo '
'; $this->do_settings_sections( $_GET['page'] ); echo '
'; echo '
'; echo '
'; echo '
'; echo '
'; /* buttons if ( $show_buttons ) { echo '
'; echo ''; echo '
'; } echo $show_buttons ? '' : '
'; /* reset button if ( $show_buttons ) { echo '
'; /* form nonce wp_nonce_field( 'option_tree_reset_form', 'option_tree_reset_nonce' ); echo ''; echo ''; echo '
'; } echo '
'; } } } return false; } /** * Adds sections to the page * * @return void * * @access public * @since 2.0 public function add_sections() { /* loop through options foreach( (array) $this->options as $option ) { /* loop through pages foreach( (array) $this->get_pages( $option ) as $page ) { /* loop through page sections foreach( (array) $this->get_sections( $page ) as $section ) { /* add each section add_settings_section( $section['id'], $section['title'], array( &$this, 'display_section' ), $page['menu_slug'] ); } } } return false; } /** * Callback for add_settings_section() * * @return string * * @access public * @since 2.0 public function display_section() { /* currently pointless } /** * Add settings the the page * * @return void * * @access public * @since 2.0 public function add_settings() { /* loop through options foreach( (array) $this->options as $option ) { register_setting( $option['id'], $option['id'], array ( &$this, 'sanitize_callback' ) ); /* loop through pages foreach( (array) $this->get_pages( $option ) as $page ) { /* loop through page settings foreach( (array) $this->get_the_settings( $page ) as $setting ) { /* skip if no setting ID if ( ! isset( $setting['id'] ) ) continue; /* add get_option param to the array $setting['get_option'] = $option['id']; /* add each setting add_settings_field( $setting['id'], $setting['label'], array( &$this, 'display_setting' ), $page['menu_slug'], $setting['section'], $setting ); } } } return false; } /** * Callback for add_settings_field() to build each setting by type * * @param array Setting object array * @return string * * @access public * @since 2.0 public function display_setting( $args = array() ) { extract( $args ); /* get current saved data $options = get_option( $get_option, false ); // Set field value $field_value = isset( $options[$id] ) ? $options[$id] : ''; /* set standard value if ( isset( $std ) ) { $field_value = ot_filter_std_value( $field_value, $std ); } /* build the arguments array $_args = array( 'type' => $type, 'field_id' => $id, 'field_name' => 'option_tree[' . $id . ']', 'field_value' => $field_value, 'field_desc' => isset( $desc ) ? $desc : '', 'field_std' => isset( $std ) ? $std : '', 'field_rows' => isset( $rows ) && ! empty( $rows ) ? $rows : 15, 'field_post_type' => isset( $post_type ) && ! empty( $post_type ) ? $post_type : 'post', 'field_taxonomy' => isset( $taxonomy ) && ! empty( $taxonomy ) ? $taxonomy : 'category', 'field_class' => isset( $class ) ? $class : '', 'field_choices' => isset( $choices ) && ! empty( $choices ) ? $choices : array(), 'field_settings' => isset( $settings ) && ! empty( $settings ) ? $settings : array(), 'post_id' => ot_get_media_post_ID(), 'get_option' => $get_option, ); /* get the option HTML echo ot_display_by_type( $_args ); } /** * Sets the option standards if nothing yet exists. * * @return void * * @access public * @since 2.0 public function initialize_settings() { /* loop through options foreach( (array) $this->options as $option ) { /* skip if option is already set if ( isset( $option['id'] ) && get_option( $option['id'], false ) ) { return false; } $defaults = array(); /* loop through pages foreach( (array) $this->get_pages( $option ) as $page ) { /* loop through page settings foreach( (array) $this->get_the_settings( $page ) as $setting ) { if ( isset( $setting['std'] ) ) { $defaults[$setting['id']] = ot_validate_setting( $setting['std'], $setting['type'], $setting['id'] ); } } } update_option( $option['id'], $defaults ); } return false; } /** * Sanitize callback for register_setting() * * @return string * * @access public * @since 2.0 public function sanitize_callback( $input ) { /* loop through options foreach( (array) $this->options as $option ) { /* loop through pages foreach( (array) $this->get_pages( $option ) as $page ) { /* loop through page settings foreach( (array) $this->get_the_settings( $page ) as $setting ) { /* verify setting has a type & value if ( isset( $setting['type'] ) && isset( $input[$setting['id']] ) ) { /* validate setting if ( is_array( $input[$setting['id']] ) && in_array( $setting['type'], array( 'list-item', 'slider' ) ) ) { /* required title setting $required_setting = array( array( 'id' => 'title', 'label' => __( 'Title', 'option-tree' ), 'desc' => '', 'std' => '', 'type' => 'text', 'rows' => '', 'class' => 'option-tree-setting-title', 'post_type' => '', 'choices' => array() ) ); /* get the settings array $settings = isset( $_POST[$setting['id'] . '_settings_array'] ) ? unserialize( ot_decode( $_POST[$setting['id'] . '_settings_array'] ) ) : array(); /* settings are empty for some odd ass reason get the defaults if ( empty( $settings ) ) { $settings = 'slider' == $setting['type'] ? ot_slider_settings( $setting['id'] ) : ot_list_item_settings( $setting['id'] ); } /* merge the two settings array $settings = array_merge( $required_setting, $settings ); foreach( $input[$setting['id']] as $k => $setting_array ) { foreach( $settings as $sub_setting ) { /* verify sub setting has a type & value if ( isset( $sub_setting['type'] ) && isset( $input[$setting['id']][$k][$sub_setting['id']] ) ) { $input[$setting['id']][$k][$sub_setting['id']] = ot_validate_setting( $input[$setting['id']][$k][$sub_setting['id']], $sub_setting['type'], $sub_setting['id'] ); } } } } else { $input[$setting['id']] = ot_validate_setting( $input[$setting['id']], $setting['type'], $setting['id'] ); } } } } } return $input; } /** * Helper function to get the pages array for an option * * @param array Option array * @return mixed * * @access public * @since 2.0 public function get_pages( $option = array() ) { if ( empty( $option ) ) return false; /* check for pages if ( isset( $option['pages'] ) && ! empty( $option['pages'] ) ) { /* return pages array return $option['pages']; } return false; } /** * Helper function to get the sections array for a page * * @param array Page array * @return mixed * * @access public * @since 2.0 public function get_sections( $page = array() ) { if ( empty( $page ) ) return false; /* check for sections if ( isset( $page['sections'] ) && ! empty( $page['sections'] ) ) { /* return sections array return $page['sections']; } return false; } /** * Helper function to get the settings array for a page * * @param array Page array * @return mixed * * @access public * @since 2.0 public function get_the_settings( $page = array() ) { if ( empty( $page ) ) return false; /* check for settings if ( isset( $page['settings'] ) && ! empty( $page['settings'] ) ) { /* return settings array return $page['settings']; } return false; } /** * Prints out all settings sections added to a particular settings page * * @global $wp_settings_sections Storage array of all settings sections added to admin pages * @global $wp_settings_fields Storage array of settings fields and info about their pages/sections * * @param string The slug name of the page whos settings sections you want to output * @return string * * @access public * @since 2.0 public function do_settings_sections( $page ) { global $wp_settings_sections, $wp_settings_fields; if ( ! isset( $wp_settings_sections ) || ! isset( $wp_settings_sections[$page] ) ) { return false; } foreach ( (array) $wp_settings_sections[$page] as $section ) { if ( ! isset( $section['id'] ) ) continue; echo '
'; call_user_func( $section['callback'], $section ); if ( ! isset( $wp_settings_fields ) || ! isset( $wp_settings_fields[$page] ) || ! isset( $wp_settings_fields[$page][$section['id']] ) ) continue; echo '
'; $this->do_settings_fields( $page, $section['id'] ); echo '
'; echo '
'; } } /** * Print out the settings fields for a particular settings section * * @global $wp_settings_fields Storage array of settings fields and their pages/sections * * @param string $page Slug title of the admin page who's settings fields you want to show. * @param string $section Slug title of the settings section who's fields you want to show. * @return string * * @access public * @since 2.0 public function do_settings_fields( $page, $section ) { global $wp_settings_fields; if ( !isset($wp_settings_fields) || !isset($wp_settings_fields[$page]) || !isset($wp_settings_fields[$page][$section]) ) return; foreach ( (array) $wp_settings_fields[$page][$section] as $field ) { echo '
'; echo '
'; if ( $field['args']['type'] != 'textblock' ) { echo '
'; echo '

' . $field['title'] . '

'; echo '
'; } call_user_func( $field['callback'], $field['args'] ); echo '
'; echo '
'; } } /** * Resets page options before the screen is displayed * * @return void * * @access public * @since 2.0 public function reset_options() { /* check for reset action if ( isset( $_POST['option_tree_reset_nonce'] ) && wp_verify_nonce( $_POST['option_tree_reset_nonce'], 'option_tree_reset_form' ) ) { /* loop through options foreach( (array) $this->options as $option ) { /* loop through pages foreach( (array) $this->get_pages( $option ) as $page ) { /* verify page if ( isset( $_GET['page'] ) && $_GET['page'] == $page['menu_slug'] ) { /* reset options delete_option( $option['id'] ); } } } } return false; } } } /** * This method instantiates the settings class & builds the UI. * * @uses OT_Settings() * * @param array Array of arguments to create settings * @return void * * @access public * @since 2.0 if ( ! function_exists( 'ot_register_settings' ) ) { function ot_register_settings( $args ) { if ( ! $args ) return; $ot_settings = new OT_Settings( $args ); } }