_meta_box = $meta_box; $upload = false; foreach ( $meta_box['fields'] as $field ) { if ( $field['type'] == 'file' || $field['type'] == 'file_list' ) { $upload = true; break; } } $current_page = substr(strrchr($_SERVER['PHP_SELF'], '/'), 1, -4); if ( $upload && ( $current_page == 'page' || $current_page == 'page-new' || $current_page == 'post' || $current_page == 'post-new' ) ) { add_action( 'admin_head', array(&$this, 'add_post_enctype') ); } add_action( 'admin_menu', array(&$this, 'add') ); add_action( 'save_post', array(&$this, 'save') ); add_filter( 'cmb_show_on', array(&$this, 'add_for_id' ), 10, 2 ); add_filter( 'cmb_show_on', array(&$this, 'add_for_page_template' ), 10, 2 ); } function add_post_enctype() { echo ' '; } // Add metaboxes function add() { $this->_meta_box['context'] = empty($this->_meta_box['context']) ? 'normal' : $this->_meta_box['context']; $this->_meta_box['priority'] = empty($this->_meta_box['priority']) ? 'high' : $this->_meta_box['priority']; $this->_meta_box['show_on'] = empty( $this->_meta_box['show_on'] ) ? array('key' => false, 'value' => false) : $this->_meta_box['show_on']; foreach ( $this->_meta_box['pages'] as $page ) { if( apply_filters( 'cmb_show_on', true, $this->_meta_box ) ) add_meta_box( $this->_meta_box['id'], $this->_meta_box['title'], array(&$this, 'show'), $page, $this->_meta_box['context'], $this->_meta_box['priority']) ; } } /** * Show On Filters * Use the 'cmb_show_on' filter to further refine the conditions under which a metabox is displayed. * Below you can limit it by ID and page template */ // Add for ID function add_for_id( $display, $meta_box ) { if ( 'id' !== $meta_box['show_on']['key'] ) return $display; // If we're showing it based on ID, get the current ID if( isset( $_GET['post'] ) ) $post_id = $_GET['post']; elseif( isset( $_POST['post_ID'] ) ) $post_id = $_POST['post_ID']; if( !isset( $post_id ) ) return $display; // If value isn't an array, turn it into one $meta_box['show_on']['value'] = !is_array( $meta_box['show_on']['value'] ) ? array( $meta_box['show_on']['value'] ) : $meta_box['show_on']['value']; // If current page id is in the included array, display the metabox if ( in_array( $post_id, $meta_box['show_on']['value'] ) ) return true; else return false; } // Add for Page Template function add_for_page_template( $display, $meta_box ) { if( 'page-template' !== $meta_box['show_on']['key'] ) return $display; // Get the current ID if( isset( $_GET['post'] ) ) $post_id = $_GET['post']; elseif( isset( $_POST['post_ID'] ) ) $post_id = $_POST['post_ID']; if( !( isset( $post_id ) || is_page() ) ) return $display; // Get current template $current_template = get_post_meta( $post_id, '_wp_page_template', true ); // If value isn't an array, turn it into one $meta_box['show_on']['value'] = !is_array( $meta_box['show_on']['value'] ) ? array( $meta_box['show_on']['value'] ) : $meta_box['show_on']['value']; // See if there's a match if( in_array( $current_template, $meta_box['show_on']['value'] ) ) return true; else return false; } // Show fields function show() { // $wp_version used for compatibility with new wp_editor() function global $post, $wp_version; // Use nonce for verification echo ''; echo ''; foreach ( $this->_meta_box['fields'] as $field ) { // Set up blank or default values for empty ones if ( !isset( $field['name'] ) ) $field['name'] = ''; if ( !isset( $field['desc'] ) ) $field['desc'] = ''; if ( !isset( $field['std'] ) ) $field['std'] = ''; if ( 'file' == $field['type'] && !isset( $field['allow'] ) ) $field['allow'] = array( 'url', 'attachment' ); if ( 'file' == $field['type'] && !isset( $field['save_id'] ) ) $field['save_id'] = false; $meta = get_post_meta( $post->ID, $field['id'], 'multicheck' != $field['type'] /* If multicheck this can be multiple values */ ); echo ''; if ( $field['type'] == "title" ) { echo ''; } echo '',''; } echo '
'; } else { if( $this->_meta_box['show_names'] == true ) { echo ''; } switch ( $field['type'] ) { case 'text': echo '','

', $field['desc'], '

'; break; case 'text_small': echo '', $field['desc'], ''; break; case 'text_medium': echo '', $field['desc'], ''; break; case 'text_date': echo '', $field['desc'], ''; break; case 'text_date_timestamp': echo '', $field['desc'], ''; break; case 'text_time': echo '', $field['desc'], ''; break; case 'text_money': echo '$ ', $field['desc'], ''; break; case 'textarea': echo '','

', $field['desc'], '

'; break; case 'textarea_small': echo '','

', $field['desc'], '

'; break; case 'textarea_code': echo '','

', $field['desc'], '

'; break; case 'select': echo ''; echo '

', $field['desc'], '

'; break; case 'radio_inline': if( empty( $meta ) && !empty( $field['std'] ) ) $meta = $field['std']; echo '
'; foreach ($field['options'] as $option) { echo '
', $option['name'], '
'; } echo '
'; echo '

', $field['desc'], '

'; break; case 'radio': if( empty( $meta ) && !empty( $field['std'] ) ) $meta = $field['std']; foreach ($field['options'] as $option) { echo '

', $option['name'].'

'; } echo '

', $field['desc'], '

'; break; case 'checkbox': echo ''; echo '', $field['desc'], ''; break; case 'multicheck': echo '
    '; foreach ( $field['options'] as $value => $name ) { // Append `[]` to the name to get multiple values // Use in_array() to check whether the current option should be checked echo '
  • '; } echo '
'; echo '', $field['desc'], ''; break; case 'title': echo '
', $field['name'], '
'; echo '

', $field['desc'], '

'; break; case 'wysiwyg': /* Make sure that the new wp_editor() function is available. * Otherwise, use the "old" version of the WYSIWYG editor */ if( function_exists( 'wp_editor' ) ) { wp_editor( $meta ? $meta : $field['std'], $field['id'], isset( $field['options'] ) ? $field['options'] : array() ); } else { echo '
'; echo '
'; echo '
'; } echo '

', $field['desc'], '

'; break; case 'taxonomy_select': echo ''; echo '

', $field['desc'], '

'; break; case 'taxonomy_radio': $names= wp_get_object_terms( $post->ID, $field['taxonomy'] ); $terms = get_terms( $field['taxonomy'], 'hide_empty=0' ); foreach ( $terms as $term ) { if ( !is_wp_error( $names ) && !empty( $names ) && !strcmp( $term->slug, $names[0]->slug ) ) { echo '

' . $term->name . '

'; } else { echo '

' . $term->name .'

'; } } echo '

', $field['desc'], '

'; break; case 'taxonomy_multicheck': echo '
    '; $names = wp_get_object_terms( $post->ID, $field['taxonomy'] ); $terms = get_terms( $field['taxonomy'], 'hide_empty=0' ); foreach ($terms as $term) { echo '
  • slug == $name->slug ){ echo ' checked="checked" ';}; } echo' />
  • '; } break; case 'file_list': echo ''; echo ''; echo '

    ', $field['desc'], '

    '; $args = array( 'post_type' => 'attachment', 'numberposts' => null, 'post_status' => null, 'post_parent' => $post->ID ); $attachments = get_posts($args); if ($attachments) { echo '
      '; foreach ($attachments as $attachment) { echo '
    • '.wp_get_attachment_link($attachment->ID, 'thumbnail', 0, 0, 'Download'); echo ''; echo apply_filters('the_title', ' '.$attachment->post_title); echo '
    • '; } echo '
    '; } break; case 'file': $input_type_url = "hidden"; if ( 'url' == $field['allow'] || ( is_array( $field['allow'] ) && in_array( 'url', $field['allow'] ) ) ) $input_type_url="text"; echo ''; echo ''; echo ''; echo '

    ', $field['desc'], '

    '; echo '
    '; if ( $meta != '' ) { $check_image = preg_match( '/(^.*\.jpg|jpeg|png|gif|ico*)/i', $meta ); if ( $check_image ) { echo '
    '; echo ''; echo 'Remove Image'; echo '
    '; } else { $parts = explode( "/", $meta ); for( $i = 0; $i < sizeof( $parts ); ++$i ) { $title = $parts[$i]; } echo 'File: ', $title, '    (Download / Remove)'; } } echo '
    '; break; default: do_action('cmb_render_' . $field['type'] , $field, $meta); } echo '
'; } // Save data from metabox function save( $post_id) { global $wp_version; // verify nonce if ( ! isset( $_POST['wp_meta_box_nonce'] ) || !wp_verify_nonce( $_POST['wp_meta_box_nonce'], basename(__FILE__) ) ) { return $post_id; } // check autosave if ( defined('DOING_AUTOSAVE' ) && DOING_AUTOSAVE ) { return $post_id; } // check permissions if ( 'page' == $_POST['post_type'] ) { if ( !current_user_can( 'edit_page', $post_id ) ) { return $post_id; } } elseif ( !current_user_can( 'edit_post', $post_id ) ) { return $post_id; } foreach ( $this->_meta_box['fields'] as $field ) { $name = $field['id']; $old = get_post_meta( $post_id, $name, 'multicheck' != $field['type'] /* If multicheck this can be multiple values */ ); $new = isset( $_POST[$field['id']] ) ? $_POST[$field['id']] : null; // wpautop() should not be needed with version 3.3 and later if ( $field['type'] == 'wysiwyg' && !function_exists( 'wp_editor' ) ) { $new = wpautop($new); } if ( in_array( $field['type'], array( 'taxonomy_select', 'taxonomy_radio', 'taxonomy_multicheck' ) ) ) { $new = wp_set_object_terms( $post_id, $new, $field['taxonomy'] ); } if ( ($field['type'] == 'textarea') || ($field['type'] == 'textarea_small') ) { $new = htmlspecialchars( $new ); } if ( ($field['type'] == 'textarea_code') ) { $new = htmlspecialchars_decode( $new ); } if ( $field['type'] == 'text_date_timestamp' ) { $new = strtotime( $new ); } $new = apply_filters('cmb_validate_' . $field['type'], $new, $post_id, $field); // validate meta value if ( isset( $field['validate_func']) ) { $ok = call_user_func( array( 'cmb_Meta_Box_Validate', $field['validate_func']), $new ); if ( $ok === false ) { // pass away when meta value is invalid continue; } } elseif ( 'multicheck' == $field['type'] ) { // Do the saving in two steps: first get everything we don't have yet // Then get everything we should not have anymore if ( empty( $new ) ) { $new = array(); } $aNewToAdd = array_diff( $new, $old ); $aOldToDelete = array_diff( $old, $new ); foreach ( $aNewToAdd as $newToAdd ) { add_post_meta( $post_id, $name, $newToAdd, false ); } foreach ( $aOldToDelete as $oldToDelete ) { delete_post_meta( $post_id, $name, $oldToDelete ); } } elseif ( $new && $new != $old ) { update_post_meta( $post_id, $name, $new ); } elseif ( '' == $new && $old ) { delete_post_meta( $post_id, $name, $old ); } if ( 'file' == $field['type'] ) { $name = $field['id'] . "_id"; $old = get_post_meta( $post_id, $name, 'multicheck' != $field['type'] /* If multicheck this can be multiple values */ ); if ( isset( $field['save_id'] ) && $field['save_id'] ) { $new = isset( $_POST[$name] ) ? $_POST[$name] : null; } else { $new = ""; } if ( $new && $new != $old ) { update_post_meta( $post_id, $name, $new ); } elseif ( '' == $new && $old ) { delete_post_meta( $post_id, $name, $old ); } } } } } /** * Adding scripts and styles */ function cmb_scripts( $hook ) { if ( $hook == 'post.php' OR $hook == 'post-new.php' OR $hook == 'page-new.php' OR $hook == 'page.php' ) { wp_register_script( 'cmb-scripts', CMB_META_BOX_URL.'jquery.cmbScripts.js', array( 'jquery','media-upload','thickbox' ) ); wp_enqueue_script( 'jquery' ); wp_enqueue_script( 'jquery-ui-core' ); // Make sure and use elements form the 1.7.3 UI - not 1.8.9 wp_enqueue_script( 'media-upload' ); wp_enqueue_script( 'thickbox' ); wp_enqueue_script( 'cmb-scripts' ); wp_enqueue_style( 'thickbox' ); wp_enqueue_style( 'jquery-custom-ui' ); add_action( 'admin_head', 'cmb_styles_inline' ); } } add_action( 'admin_enqueue_scripts', 'cmb_scripts', 10, 1 ); function editor_admin_init( $hook ) { if ( $hook == 'post.php' OR $hook == 'post-new.php' OR $hook == 'page-new.php' OR $hook == 'page.php' ) { wp_enqueue_script( 'word-count' ); wp_enqueue_script( 'post' ); wp_enqueue_script( 'editor' ); } } function editor_admin_head( $hook ) { if ( $hook == 'post.php' OR $hook == 'post-new.php' OR $hook == 'page-new.php' OR $hook == 'page.php' ) { wp_tiny_mce(); } } add_action( 'admin_init', 'editor_admin_init' ); add_action( 'admin_head', 'editor_admin_head' ); function cmb_editor_footer_scripts() { ?> '; ?> function cmbGetParameterByNameInline(name) { name = name.replace(/[\[]/, "\\\[").replace(/[\]]/, "\\\]"); var regexS = "[\\?&]" + name + "=([^&#]*)"; var regex = new RegExp(regexS); var results = regex.exec(window.location.href); if(results == null) return ""; else return decodeURIComponent(results[1].replace(/\+/g, " ")); } jQuery(function($) { if (cmbGetParameterByNameInline("cmb_force_send")=="true") { var cmb_send_label = cmbGetParameterByNameInline("cmb_send_label"); $("td.savesend input").val(cmb_send_label); } }); '; } return $args; } // End. That's it, folks! //