version 3.2. which later was forked * by Cory Crowley (email: cory.ivan@gmail.com) The purpose of this class is not to rewrite the script but to * modify and change small things and adding a few field types that i needed to my personal preference. * The original author did a great job in writing this class, so all props goes to him. * * @version 3.0.6 * @copyright 2011 - 2013 * @author Ohad Raz (email: admin@bainternet.info) * @link http://en.bainternet.info * * @license GNU General Public LIcense v3.0 - license.txt * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, * FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL THE * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN * THE SOFTWARE. * * @package MY Meta Box Class */ if ( ! class_exists( 'AT_Meta_Box') ) : /** * All Types Meta Box class. * * @package All Types Meta Box * @since 1.0 * * @todo Nothing. */ class AT_Meta_Box { /** * Holds meta box object * * @var object * @access protected */ protected $_meta_box; /** * Holds meta box fields. * * @var array * @access protected */ protected $_prefix; /** * Holds Prefix for meta box fields. * * @var array * @access protected */ protected $_fields; /** * Use local images. * * @var bool * @access protected */ protected $_Local_images; /** * SelfPath to allow themes as well as plugins. * * @var string * @access protected * @since 1.6 */ protected $SelfPath; /** * $field_types holds used field types * @var array * @access public * @since 2.9.7 */ public $field_types = array(); /** * $inGroup holds groupping boolean * @var boolean * @access public * @since 2.9.8 */ public $inGroup = false; /** * Constructor * * @since 1.0 * @access public * * @param array $meta_box */ public function __construct ( $meta_box ) { // If we are not in admin area exit. if ( ! is_admin() ) return; //load translation add_filter('init', array($this,'load_textdomain')); // Assign meta box values to local variables and add it's missed values. $this->_meta_box = $meta_box; $this->_prefix = (isset($meta_box['prefix'])) ? $meta_box['prefix'] : ''; $this->_fields = &$this->_meta_box['fields']; $this->_Local_images = (isset($meta_box['local_images'])) ? true : false; $this->add_missed_values(); if (isset($meta_box['use_with_theme'])) if ($meta_box['use_with_theme'] === true){ $this->SelfPath = get_stylesheet_directory_uri() . '/admin/meta-box-class'; }elseif($meta_box['use_with_theme'] === false){ $this->SelfPath = plugins_url( 'meta-box-class', plugin_basename( dirname( __FILE__ ) ) ); }else{ $this->SelfPath = $meta_box['use_with_theme']; } else{ $this->SelfPath = plugins_url( 'meta-box-class', plugin_basename( dirname( __FILE__ ) ) ); } // Add metaboxes add_action( 'add_meta_boxes', array( &$this, 'add' ) ); //add_action( 'wp_insert_post', array( &$this, 'save' ) ); add_action( 'save_post', array( &$this, 'save' ) ); // Load common js, css files // Must enqueue for all pages as we need js for the media upload, too. add_action( 'admin_print_styles', array( &$this, 'load_scripts_styles' ) ); // Delete file via Ajax add_action( 'wp_ajax_at_delete_mupload', array( $this, 'wp_ajax_delete_image' ) ); // Delete all attachments when delete custom post type. add_action( 'wp_ajax_atm_delete_file', array( &$this, 'delete_file' ) ); add_action( 'wp_ajax_atm_reorder_images', array( &$this, 'reorder_images' ) ); } /** * Load all Javascript and CSS * * @since 1.0 * @access public */ public function load_scripts_styles() { // Get Plugin Path $plugin_path = $this->SelfPath; //only load styles and js when needed /* * since 1.8 */ global $typenow; if (in_array($typenow,$this->_meta_box['pages']) && $this->is_edit_page()){ // Enqueue Meta Box Style wp_enqueue_style( 'at-meta-box', $plugin_path . '/css/meta-box.css' ); // Enqueue Meta Box Scripts wp_enqueue_script( 'at-meta-box', $plugin_path . '/js/meta-box.js', array( 'jquery' ), null, true ); // Make upload feature work event when custom post type doesn't support 'editor' if ($this->has_field('image') || $this->has_field('file')){ wp_enqueue_script( 'media-upload' ); add_thickbox(); wp_enqueue_script( 'jquery-ui-core' ); wp_enqueue_script( 'jquery-ui-sortable' ); } // Check for special fields and add needed actions for them. //this replaces the ugly check fields methods calls foreach (array('upload','color','date','time','code','select') as $type) { call_user_func ( array( &$this, 'check_field_' . $type )); } } } /** * Check the Field select, Add needed Actions * * @since 2.9.8 * @access public */ public function check_field_select() { // Check if the field is an image or file. If not, return. if ( ! $this->has_field( 'select' )) return; $plugin_path = $this->SelfPath; // Enqueu JQuery UI, use proper version. // Enqueu JQuery select2 library, use proper version. wp_enqueue_style('at-multiselect-select2-css', $plugin_path . '/js/select2/select2.css', array(), null); wp_enqueue_script('at-multiselect-select2-js', $plugin_path . '/js/select2/select2.js', array('jquery'), false, true); } /** * Check the Field Upload, Add needed Actions * * @since 1.0 * @access public */ public function check_field_upload() { // Check if the field is an image or file. If not, return. if ( ! $this->has_field( 'image' ) && ! $this->has_field( 'file' ) ) return; // Add data encoding type for file uploading. add_action( 'post_edit_form_tag', array( $this, 'add_enctype' ) ); // Add filters for media upload. add_filter( 'media_upload_gallery', array( &$this, 'insert_images' ) ); add_filter( 'media_upload_library', array( &$this, 'insert_images' ) ); add_filter( 'media_upload_image', array( &$this, 'insert_images' ) ); } /** * Add data encoding type for file uploading * * @since 1.0 * @access public */ public function add_enctype () { printf(' enctype="multipart/form-data" encoding="multipart/form-data" '); } /** * Process images added to meta field. * * Modified from Faster Image Insert plugin. * * @return void * @author Cory Crowley */ public function insert_images() { // If post variables are empty, return. if ( ! isset( $_POST['at-insert'] ) || empty( $_POST['attachments'] ) ) return; // Security Check check_admin_referer( 'media-form' ); // Create Security Nonce $nonce = wp_create_nonce( 'at_ajax_delete' ); // Get Post Id and Field Id $post_id = $_POST['post_id']; $id = $_POST['field_id']; // Modify the insertion string $html = ''; foreach( $_POST['attachments'] as $attachment_id => $attachment ) { // Strip Slashes $attachment = stripslashes_deep( $attachment ); // If not selected or url is empty, continue in loop. if ( empty( $attachment['selected'] ) || empty( $attachment['url'] ) ) continue; $li = "
  • "; $li .= "image_{$attachment_id}"; //$li .= "" . __( 'Delete' ) . ""; $li .= "" . __( "; $li .= ""; $li .= "
  • "; $html .= $li; } // End For Each return media_send_to_editor( $html ); } /** * Delete attachments associated with the post. * * @since 1.0 * @access public * * @param string $post_id */ public function delete_attachments( $post_id ) { // Get Attachments $attachments = get_posts( array( 'numberposts' => -1, 'post_type' => 'attachment', 'post_parent' => $post_id ) ); // Loop through attachments, if not empty, delete it. if ( ! empty( $attachments ) ) { foreach ( $attachments as $att ) { wp_delete_attachment( $att->ID ); } } } /** * Ajax callback for deleting files. * * Modified from a function used by "Verve Meta Boxes" plugin ( http://goo.gl/aw64H ) * * @since 1.0 * @access public */ public function delete_file() { // If data is not set, die. if ( ! isset( $_POST['data'] ) ) die('1'); list($nonce, $term_id, $key, $attach_id) = explode('|', $_POST['data']); $post_id = $_POST['tag_id']; //$arrKey = (int)$_POST['idx']; if ( ! wp_verify_nonce( $nonce, 'at_ajax_delete_file' ) ) die( '1' ); $saved = get_post_meta($post_id,$key,true); $index = array_search($attach_id, $saved); foreach ($saved as $k => $value) { if ($value == $attach_id) unset($saved[$k]); } if (count($saved) > 0){ update_post_meta($post_id,$key,$saved); die('0'); } delete_post_meta( $post_id, $key); die( '0' ); } /** * Ajax callback for deleting files. * Modified from a function used by "Verve Meta Boxes" plugin (http://goo.gl/LzYSq) * @since 1.7 * @access public */ public function wp_ajax_delete_image() { $post_id = isset( $_GET['post_id'] ) ? intval( $_GET['post_id'] ) : 0; $field_id = isset( $_GET['field_id'] ) ? $_GET['field_id'] : 0; $attachment_id = isset( $_GET['attachment_id'] ) ? intval( $_GET['attachment_id'] ) : 0; $ok = false; if (strpos($field_id, '[') === false){ check_admin_referer( "at-delete-mupload_".urldecode($field_id)); $ok = delete_post_meta( $post_id, $field_id ); $ok = $ok && wp_delete_attachment( $attachment_id ); }else{ $f = explode('[',urldecode($field_id)); $f_fiexed = array(); foreach ($f as $k => $v){ $f[$k] = str_replace(']','',$v); } $saved = get_post_meta($post_id,$f[0],true); if (isset($saved[$f[1]][$f[2]])){ unset($saved[$f[1]][$f[2]]); $ok = update_post_meta($post_id,$f[0],$saved); $ok = $ok && wp_delete_attachment( $attachment_id ); } } if ( $ok ){ echo json_encode( array('status' => 'success' )); die(); }else{ echo json_encode(array('message' => __( 'Cannot delete file. Something\'s wrong.','mmb'))); die(); } } /** * Ajax callback for reordering Images. * * @since 1.0 * @access public */ public function reorder_images() { if ( ! isset( $_POST['data'] ) ) die(); list( $order, $post_id, $key, $nonce ) = explode( '|', $_POST['data'] ); if ( ! wp_verify_nonce( $nonce, 'at_ajax_reorder' ) ) die( '1' ); parse_str( $order, $items ); $items = $items['item']; $order = 1; foreach ( $items as $item ) { wp_update_post( array( 'ID' => $item, 'post_parent' => $post_id, 'menu_order' => $order ) ); $order++; } die( '0' ); } /** * Check Field Color * * @since 1.0 * @access public */ public function check_field_color() { if ( $this->has_field( 'color' ) && $this->is_edit_page() ) { // Enqueu built-in script and style for color picker. if( wp_style_is( 'wp-color-picker', 'registered' ) ) { //since WordPress 3.5 wp_enqueue_style( 'wp-color-picker' ); wp_enqueue_script( 'wp-color-picker' ); }else{ // Enqueu built-in script and style for color picker. wp_enqueue_style( 'farbtastic' ); wp_enqueue_script( 'farbtastic' ); } } } /** * Check Field Date * * @since 1.0 * @access public */ public function check_field_date() { if ( $this->has_field( 'date' ) && $this->is_edit_page() ) { // Enqueu JQuery UI, use proper version. $plugin_path = $this->SelfPath; wp_enqueue_style( 'at-jquery-ui-css', $plugin_path .'/js/jquery-ui/jquery-ui.css' ); wp_enqueue_script( 'jquery-ui'); wp_enqueue_script( 'jquery-ui-datepicker'); } } /** * Check Field Time * * @since 1.0 * @access public */ public function check_field_time() { if ( $this->has_field( 'time' ) && $this->is_edit_page() ) { $plugin_path = $this->SelfPath; // Enqueu JQuery UI, use proper version. wp_enqueue_style( 'at-jquery-ui-css', $plugin_path .'/js/jquery-ui/jquery-ui.css' ); wp_enqueue_script( 'jquery-ui'); wp_enqueue_script( 'at-timepicker', $plugin_path .'/js/jquery-ui/jquery-ui-timepicker-addon.js', array( 'jquery-ui-slider','jquery-ui-datepicker' ),false,true ); } } /** * Check Field code editor * * @since 2.1 * @access public */ public function check_field_code() { if ( $this->has_field( 'code' ) && $this->is_edit_page() ) { $plugin_path = $this->SelfPath; // Enqueu codemirror js and css wp_enqueue_style( 'at-code-css', $plugin_path .'/js/codemirror/codemirror.css',array(),null); wp_enqueue_style( 'at-code-css-dark', $plugin_path .'/js/codemirror/solarizedDark.css',array(),null); wp_enqueue_style( 'at-code-css-light', $plugin_path .'/js/codemirror/solarizedLight.css',array(),null); wp_enqueue_script('at-code-js',$plugin_path .'/js/codemirror/codemirror.js',array('jquery'),false,true); wp_enqueue_script('at-code-js-xml',$plugin_path .'/js/codemirror/xml.js',array('jquery'),false,true); wp_enqueue_script('at-code-js-javascript',$plugin_path .'/js/codemirror/javascript.js',array('jquery'),false,true); wp_enqueue_script('at-code-js-css',$plugin_path .'/js/codemirror/css.js',array('jquery'),false,true); wp_enqueue_script('at-code-js-clike',$plugin_path .'/js/codemirror/clike.js',array('jquery'),false,true); wp_enqueue_script('at-code-js-php',$plugin_path .'/js/codemirror/php.js',array('jquery'),false,true); } } /** * Add Meta Box for multiple post types. * * @since 1.0 * @access public */ public function add($postType) { if(in_array($postType, $this->_meta_box['pages'])){ add_meta_box( $this->_meta_box['id'], $this->_meta_box['title'], array( &$this, 'show' ),$postType, $this->_meta_box['context'], $this->_meta_box['priority'] ); } } /** * Callback function to show fields in meta box. * * @since 1.0 * @access public */ public function show() { $this->inGroup = false; global $post; //var_dump($this->_fields); wp_nonce_field( basename(__FILE__), 'at_meta_box_nonce' ); echo ''; foreach ( $this->_fields as $field ) { $field['multiple'] = isset($field['multiple']) ? $field['multiple'] : false; $meta = get_post_meta( $post->ID, $field['id'], !$field['multiple'] ); $meta = ( $meta !== '' ) ? $meta : @$field['std']; if (!in_array($field['type'], array('image', 'repeater','file'))) $meta = is_array( $meta ) ? array_map( 'esc_attr', $meta ) : esc_attr( $meta ); if ($this->inGroup !== true) echo ''; if (isset($field['group']) && $field['group'] == 'start'){ $this->inGroup = true; echo ''; $this->inGroup = false; } }else{ echo ''; } } echo '
    '; } // Call Separated methods for displaying each type of field. call_user_func ( array( &$this, 'show_field_' . $field['type'] ), $field, $meta ); if ($this->inGroup === true){ if(isset($field['group']) && $field['group'] == 'end'){ echo '
    '; } /** * Show Repeater Fields. * * @param string $field * @param string $meta * @since 1.0 * @access public */ public function show_field_repeater( $field, $meta ) { global $post; // Get Plugin Path $plugin_path = $this->SelfPath; $this->show_field_begin( $field, $meta ); $class = ''; if ($field['sortable']) $class = " repeater-sortable"; echo "
    "; $c = 0; $meta = get_post_meta($post->ID,$field['id'],true); if (count($meta) > 0 && is_array($meta) ){ foreach ($meta as $me){ //for labling toggles $mmm = isset($me[$field['fields'][0]['id']])? $me[$field['fields'][0]['id']]: ""; echo '
    '.$mmm.'
    '; if ($field['inline']){ echo ''; } foreach ($field['fields'] as $f){ //reset var $id for repeater $id = ''; $id = $field['id'].'['.$c.']['.$f['id'].']'; $m = isset($me[$f['id']]) ? $me[$f['id']]: ''; $m = ( $m !== '' ) ? $m : $f['std']; if ('image' != $f['type'] && $f['type'] != 'repeater') $m = is_array( $m) ? array_map( 'esc_attr', $m ) : esc_attr( $m); //set new id for field in array format $f['id'] = $id; if (!$field['inline']){ echo ''; } call_user_func ( array( &$this, 'show_field_' . $f['type'] ), $f, $m); if (!$field['inline']){ echo ''; } } if ($field['inline']){ echo ''; } echo ' Edit '.__('Remove','mmb').'
    '; $c = $c + 1; } } echo ''.__('Add','mmb').'
    '; //create all fields once more for js function and catch with object buffer ob_start(); echo '
    '; if ($field['inline']){ echo ''; } foreach ($field['fields'] as $f){ //reset var $id for repeater $id = ''; $id = $field['id'].'[CurrentCounter]['.$f['id'].']'; $f['id'] = $id; if (!$field['inline']){ echo ''; } if ($f['type'] != 'wysiwyg') call_user_func ( array( &$this, 'show_field_' . $f['type'] ), $f, ''); else call_user_func ( array( &$this, 'show_field_' . $f['type'] ), $f, '',true); if (!$field['inline']){ echo ''; } } if ($field['inline']){ echo ''; } echo '
    '.__('Remove','mmb').'
    '; $counter = 'countadd_'.$field['id']; $js_code = ob_get_clean (); $js_code = str_replace("\n","",$js_code); $js_code = str_replace("\r","",$js_code); $js_code = str_replace("'","\"",$js_code); $js_code = str_replace("CurrentCounter","' + ".$counter." + '",$js_code); echo ''; echo '
    '; $this->show_field_end($field, $meta); } /** * Begin Field. * * @param string $field * @param string $meta * @since 1.0 * @access public */ public function show_field_begin( $field, $meta) { echo "inGroup === true)? " valign='top'": "").">"; if ( $field['name'] != '' || $field['name'] != FALSE ) { echo "
    "; echo ""; echo "
    "; } } /** * End Field. * * @param string $field * @param string $meta * @since 1.0 * @access public */ public function show_field_end( $field, $meta=NULL ,$group = false) { //print description if ( isset($field['desc']) && $field['desc'] != '' ) echo "
    {$field['desc']}
    "; echo ""; } /** * Show Field Text. * * @param string $field * @param string $meta * @since 1.0 * @access public */ public function show_field_text( $field, $meta) { $this->show_field_begin( $field, $meta ); echo ""; $this->show_field_end( $field, $meta ); } /** * Show Field number. * * @param string $field * @param string $meta * @since 1.0 * @access public */ public function show_field_number( $field, $meta) { $this->show_field_begin( $field, $meta ); $step = (isset($field['step']) || $field['step'] != '1')? "step='".$field['step']."' ": ''; $min = isset($field['min'])? "min='".$field['min']."' ": ''; $max = isset($field['max'])? "max='".$field['max']."' ": ''; echo ""; $this->show_field_end( $field, $meta ); } /** * Show Field code editor. * * @param string $field * @author Ohad Raz * @param string $meta * @since 2.1 * @access public */ public function show_field_code( $field, $meta) { $this->show_field_begin( $field, $meta ); echo ""; $this->show_field_end( $field, $meta ); } /** * Show Field hidden. * * @param string $field * @param string|mixed $meta * @since 0.1.3 * @access public */ public function show_field_hidden( $field, $meta) { //$this->show_field_begin( $field, $meta ); echo ""; //$this->show_field_end( $field, $meta ); } /** * Show Field Paragraph. * * @param string $field * @since 0.1.3 * @access public */ public function show_field_paragraph( $field) { //$this->show_field_begin( $field, $meta ); echo '

    '.$field['value'].'

    '; //$this->show_field_end( $field, $meta ); } /** * Show Field Textarea. * * @param string $field * @param string $meta * @since 1.0 * @access public */ public function show_field_textarea( $field, $meta ) { $this->show_field_begin( $field, $meta ); echo ""; $this->show_field_end( $field, $meta ); } /** * Show Field Select. * * @param string $field * @param string $meta * @since 1.0 * @access public */ public function show_field_select( $field, $meta ) { if ( ! is_array( $meta ) ) $meta = (array) $meta; $this->show_field_begin( $field, $meta ); echo ""; $this->show_field_end( $field, $meta ); } /** * Show Radio Field. * * @param string $field * @param string $meta * @since 1.0 * @access public */ public function show_field_radio( $field, $meta ) { if ( ! is_array( $meta ) ) $meta = (array) $meta; $this->show_field_begin( $field, $meta ); foreach ( $field['options'] as $key => $value ) { echo " {$value}"; } $this->show_field_end( $field, $meta ); } /** * Show Checkbox Field. * * @param string $field * @param string $meta * @since 1.0 * @access public */ public function show_field_checkbox( $field, $meta ) { $this->show_field_begin($field, $meta); echo ""; $this->show_field_end( $field, $meta ); } /** * Show Wysiwig Field. * * @param string $field * @param string $meta * @since 1.0 * @access public */ public function show_field_wysiwyg( $field, $meta,$in_repeater = false ) { $this->show_field_begin( $field, $meta ); // Add TinyMCE script for WP version < 3.3 global $wp_version; if ( version_compare( $wp_version, '3.2.1' ) < 1 || $in_repeater ) echo ""; else{ // Use new wp_editor() since WP 3.3 wp_editor( html_entity_decode($meta), $field['id'], array( 'editor_class' => 'at-wysiwyg'.( isset($field['class'])? ' ' . $field['class'] : '' )) ); } $this->show_field_end( $field, $meta ); } /** * Show File Field. * * @param string $field * @param string $meta * @since 1.0 * @access public */ public function show_field_file( $field, $meta ) { global $post; /* delete_post_meta($post->ID, $field['id']); $meta = '';*/ if ( ! is_array( $meta ) ) $meta = (array) $meta; $this->show_field_begin( $field, $meta ); echo "{$field['desc']}
    "; if ( !empty( $meta ) && count($meta) > 0 && !$this->is_array_empty($meta) ) { $nonce = wp_create_nonce( 'at_ajax_delete_file' ); echo '
    ' . __('Uploaded files','mmb') . '
    '; echo '
      '; foreach ( (array)$meta[0] as $key => $att ) { // if (wp_attachment_is_image($att)) continue; // what's image uploader for? echo "
    1. " . wp_get_attachment_url( $att) . " (" . __( 'Delete','mmb' ) . ")
    2. "; } echo '
    '; } // show form upload echo "
    \n " . __( 'Upload new files','mmb' ) . "\n
    \n"; echo "
    \n
    \n \n
    \n " . __( 'Add more files','mmb' ) . "\n
    \n"; echo ""; $this->show_field_end( $field, $meta ); } /** * Show Image Field. * * @param array $field * @param array $meta * @since 1.0 * @access public */ public function show_field_image( $field, $meta ) { $this->show_field_begin( $field, $meta ); $html = wp_nonce_field( "at-delete-mupload_{$field['id']}", "nonce-delete-mupload_".$field['id'], false, false ); if (is_array($meta)){ if(isset($meta[0]) && is_array($meta[0])) $meta = $meta[0]; } if (is_array($meta) && isset($meta['src']) && $meta['src'] != ''){ $html .= ""; $html .= ""; $html .= ""; $html .= ""; }else{ $html .= ""; $html .= ""; $html .= ""; $html .= ""; } echo $html; } /** * Show Color Field. * * @param string $field * @param string $meta * @since 1.0 * @access public */ public function show_field_color( $field, $meta ) { if ( empty( $meta ) ) $meta = '#'; $this->show_field_begin( $field, $meta ); if( wp_style_is( 'wp-color-picker', 'registered' ) ) { //iris color picker since 3.5 echo ""; }else{ echo ""; echo ""; echo ""; } $this->show_field_end($field, $meta); } /** * Show Checkbox List Field * * @param string $field * @param string $meta * @since 1.0 * @access public */ public function show_field_checkbox_list( $field, $meta ) { if ( ! is_array( $meta ) ) $meta = (array) $meta; $this->show_field_begin($field, $meta); $html = array(); foreach ($field['options'] as $key => $value) { $html[] = " {$value}"; } echo implode( '
    ' , $html ); $this->show_field_end($field, $meta); } /** * Show Date Field. * * @param string $field * @param string $meta * @since 1.0 * @access public */ public function show_field_date( $field, $meta ) { $this->show_field_begin( $field, $meta ); echo ""; $this->show_field_end( $field, $meta ); } /** * Show time field. * * @param string $field * @param string $meta * @since 1.0 * @access public */ public function show_field_time( $field, $meta ) { $this->show_field_begin( $field, $meta ); $ampm = ($field['ampm'])? 'true' : 'false'; echo ""; $this->show_field_end( $field, $meta ); } /** * Show Posts field. * used creating a posts/pages/custom types checkboxlist or a select dropdown * @param string $field * @param string $meta * @since 1.0 * @access public */ public function show_field_posts($field, $meta) { global $post; if (!is_array($meta)) $meta = (array) $meta; $this->show_field_begin($field, $meta); $options = $field['options']; $posts = get_posts($options['args']); // checkbox_list if ('checkbox_list' == $options['type']) { foreach ($posts as $p) { echo "ID, $meta), true, false) . " /> $p->post_title
    "; } } // select else { echo ""; } $this->show_field_end($field, $meta); } /** * Show Taxonomy field. * used creating a category/tags/custom taxonomy checkboxlist or a select dropdown * @param string $field * @param string $meta * @since 1.0 * @access public * * @uses get_terms() */ public function show_field_taxonomy($field, $meta) { global $post; if (!is_array($meta)) $meta = (array) $meta; $this->show_field_begin($field, $meta); $options = $field['options']; $terms = get_terms($options['taxonomy'], $options['args']); // checkbox_list if ('checkbox_list' == $options['type']) { foreach ($terms as $term) { echo "slug, $meta), true, false) . " /> $term->name
    "; } } // select else { echo ""; } $this->show_field_end($field, $meta); } /** * Show conditinal Checkbox Field. * * @param string $field * @param string $meta * @since 2.9.9 * @access public */ public function show_field_cond( $field, $meta ) { $this->show_field_begin($field, $meta); $checked = false; if (is_array($meta) && isset($meta['enabled']) && $meta['enabled'] == 'on'){ $checked = true; } echo ""; //start showing the fields $display = ($checked)? '' : ' style="display: none;"'; echo '
    '; foreach ((array)$field['fields'] as $f){ //reset var $id for cond $id = ''; $id = $field['id'].'['.$f['id'].']'; $m = ''; $m = (isset($meta[$f['id']])) ? $meta[$f['id']]: ''; $m = ( $m !== '' ) ? $m : (isset($f['std'])? $f['std'] : ''); if ('image' != $f['type'] && $f['type'] != 'repeater') $m = is_array( $m) ? array_map( 'esc_attr', $m ) : esc_attr( $m); //set new id for field in array format $f['id'] = $id; echo ''; call_user_func ( array( &$this, 'show_field_' . $f['type'] ), $f, $m); echo ''; } echo '
    '; $this->show_field_end( $field, $meta ); } /** * Save Data from Metabox * * @param string $post_id * @since 1.0 * @access public */ public function save( $post_id ) { global $post_type; $post_type_object = get_post_type_object( $post_type ); if ( ( defined( 'DOING_AUTOSAVE' ) && DOING_AUTOSAVE ) // Check Autosave || ( ! isset( $_POST['post_ID'] ) || $post_id != $_POST['post_ID'] ) // Check Revision || ( ! in_array( $post_type, $this->_meta_box['pages'] ) ) // Check if current post type is supported. || ( ! check_admin_referer( basename( __FILE__ ), 'at_meta_box_nonce') ) // Check nonce - Security || ( ! current_user_can( $post_type_object->cap->edit_post, $post_id ) ) ) // Check permission { return $post_id; } foreach ( $this->_fields as $field ) { $name = $field['id']; $type = $field['type']; $old = get_post_meta( $post_id, $name, ! $field['multiple'] ); $new = ( isset( $_POST[$name] ) ) ? $_POST[$name] : ( ( $field['multiple'] ) ? array() : '' ); // Validate meta value if ( class_exists( 'at_Meta_Box_Validate' ) && method_exists( 'at_Meta_Box_Validate', $field['validate_func'] ) ) { $new = call_user_func( array( 'at_Meta_Box_Validate', $field['validate_func'] ), $new ); } //skip on Paragraph field if ($type != "paragraph"){ // Call defined method to save meta value, if there's no methods, call common one. $save_func = 'save_field_' . $type; if ( method_exists( $this, $save_func ) ) { call_user_func( array( &$this, 'save_field_' . $type ), $post_id, $field, $old, $new ); } else { $this->save_field( $post_id, $field, $old, $new ); } } } // End foreach } /** * Common function for saving fields. * * @param string $post_id * @param string $field * @param string $old * @param string|mixed $new * @since 1.0 * @access public */ public function save_field( $post_id, $field, $old, $new ) { $name = $field['id']; delete_post_meta( $post_id, $name ); if ( $new === '' || $new === array() ) return; if ( $field['multiple'] ) { foreach ( $new as $add_new ) { add_post_meta( $post_id, $name, $add_new, false ); } } else { update_post_meta( $post_id, $name, $new ); } } /** * function for saving image field. * * @param string $post_id * @param string $field * @param string $old * @param string|mixed $new * @since 1.7 * @access public */ public function save_field_image( $post_id, $field, $old, $new ) { $name = $field['id']; delete_post_meta( $post_id, $name ); if ( $new === '' || $new === array() || $new['id'] == '' || $new['src'] == '') return; update_post_meta( $post_id, $name, $new ); } /* * Save Wysiwyg Field. * * @param string $post_id * @param string $field * @param string $old * @param string $new * @since 1.0 * @access public */ public function save_field_wysiwyg( $post_id, $field, $old, $new ) { $this->save_field( $post_id, $field, $old, $new ); } /** * Save repeater Fields. * * @param string $post_id * @param string $field * @param string|mixed $old * @param string|mixed $new * @since 1.0 * @access public */ public function save_field_repeater( $post_id, $field, $old, $new ) { if (is_array($new) && count($new) > 0){ foreach ($new as $n){ foreach ( $field['fields'] as $f ) { $type = $f['type']; switch($type) { case 'wysiwyg': $n[$f['id']] = wpautop( $n[$f['id']] ); break; case 'file': $n[$f['id']] = $this->save_field_file_repeater($post_id,$f,'',$n[$f['id']]); break; default: break; } } if(!$this->is_array_empty($n)) $temp[] = $n; } if (isset($temp) && count($temp) > 0 && !$this->is_array_empty($temp)){ update_post_meta($post_id,$field['id'],$temp); }else{ // remove old meta if exists delete_post_meta($post_id,$field['id']); } }else{ // remove old meta if exists delete_post_meta($post_id,$field['id']); } } /** * Save File Field. * * @param string $post_id * @param string $field * @param string $old * @param string $new * @since 1.0 * @access public */ public function save_field_file( $post_id, $field, $old, $new ) { $name = $field['id']; if ( empty( $_FILES[$name] ) && !is_array($old)){ delete_post_meta($post_id,$name); return; } $temp = get_post_meta($post_id,$name,true); $temp = is_array($temp) ? $temp : array(); $files = $this->fix_file_array( $_FILES[$name] ); foreach ( $files as $fileitem ) { $file = wp_handle_upload( $fileitem, array( 'test_form' => false ) ); if ( empty( $file['file'] ) ) continue; $filename = $file['file']; $attachment = array( 'post_mime_type' => $file['type'], 'guid' => $file['url'], 'post_parent' => $term_id, 'post_title' => preg_replace('/\.[^.]+$/', '', basename( $filename ) ), 'post_content' => '' ); $id = wp_insert_attachment( $attachment, $filename); if ( ! is_wp_error( $id ) ) { wp_update_attachment_metadata( $id, wp_generate_attachment_metadata( $id, $filename ) ); $temp[] = $id; // save file's url in meta fields } // End if } // End foreach if (count($temp) > 0) update_post_meta($post_id, $name, $temp); } /** * Save repeater File Field. * @param string $post_id * @param string $field * @param string $old * @param string $new * @since 1.0 * @access public */ public function save_field_file_repeater( $post_id, $field, $old, $new ) { $name = $field['id']; if ( empty( $_FILES[$name] ) ) return; $this->fix_file_array( $_FILES[$name] ); foreach ( $_FILES[$name] as $position => $fileitem ) { $file = wp_handle_upload( $fileitem, array( 'test_form' => false ) ); if ( empty( $file['file'] ) ) continue; $filename = $file['file']; $attachment = array( 'post_mime_type' => $file['type'], 'guid' => $file['url'], 'post_parent' => $post_id, 'post_title' => preg_replace('/\.[^.]+$/', '', basename( $filename ) ), 'post_content' => '' ); $id = wp_insert_attachment( $attachment, $filename, $post_id ); if ( ! is_wp_error( $id ) ) { wp_update_attachment_metadata( $id, wp_generate_attachment_metadata( $id, $filename ) ); return $id; // return file's url in meta fields } // End if } // End foreach } /** * Add missed values for meta box. * * @since 1.0 * @access public */ public function add_missed_values() { // Default values for meta box $this->_meta_box = array_merge( array( 'context' => 'normal', 'priority' => 'high', 'pages' => array( 'post' ) ), (array)$this->_meta_box ); // Default values for fields foreach ( $this->_fields as &$field ) { $multiple = in_array( $field['type'], array( 'checkbox_list', 'file', 'image' ) ); $std = $multiple ? array() : ''; $format = 'date' == $field['type'] ? 'yy-mm-dd' : ( 'time' == $field['type'] ? 'hh:mm' : '' ); $field = array_merge( array( 'multiple' => $multiple, 'std' => $std, 'desc' => '', 'format' => $format, 'validate_func' => '' ), $field ); } // End foreach } /** * Check if field with $type exists. * * @param string $type * @since 1.0 * @access public */ public function has_field( $type ) { //faster search in single dimention array. if (count($this->field_types) > 0){ return in_array($type, $this->field_types); } //run once over all fields and store the types in a local array $temp = array(); foreach ($this->_fields as $field) { $temp[] = $field['type']; if ('repeater' == $field['type'] || 'cond' == $field['type']){ foreach((array)$field["fields"] as $repeater_field) { $temp[] = $repeater_field["type"]; } } } //remove duplicates $this->field_types = array_unique($temp); //call this function one more time now that we have an array of field types return $this->has_field($type); } /** * Check if current page is edit page. * * @since 1.0 * @access public */ public function is_edit_page() { global $pagenow; return in_array( $pagenow, array( 'post.php', 'post-new.php' ) ); } /** * Fixes the odd indexing of multiple file uploads. * * Goes from the format: * $_FILES['field']['key']['index'] * to * The More standard and appropriate: * $_FILES['field']['index']['key'] * * @param string $files * @since 1.0 * @access public */ public function fix_file_array( &$files ) { $output = array(); foreach ( $files as $key => $list ) { foreach ( $list as $index => $value ) { $output[$index][$key] = $value; } } return $output; } /** * Get proper JQuery UI version. * * Used in order to not conflict with WP Admin Scripts. * * @since 1.0 * @access public */ public function get_jqueryui_ver() { global $wp_version; if ( version_compare( $wp_version, '3.1', '>=') ) { return '1.8.10'; } return '1.7.3'; } /** * Add Field to meta box (generic function) * @author Ohad Raz * @since 1.2 * @access public * @param $id string field id, i.e. the meta key * @param $args mixed|array */ public function addField($id,$args){ $new_field = array('id'=> $id,'std' => '','desc' => '','style' =>''); $new_field = array_merge($new_field, $args); $this->_fields[] = $new_field; } /** * Add Text Field to meta box * @author Ohad Raz * @since 1.0 * @access public * @param $id string field id, i.e. the meta key * @param $args mixed|array * 'name' => // field name/label string optional * 'desc' => // field description, string optional * 'std' => // default value, string optional * 'style' => // custom style for field, string optional * 'validate_func' => // validate function, string optional * @param $repeater bool is this a field inside a repeatr? true|false(default) */ public function addText($id,$args,$repeater=false){ $new_field = array('type' => 'text','id'=> $id,'std' => '','desc' => '','style' =>'','name' => 'Text Field'); $new_field = array_merge($new_field, $args); if(false === $repeater){ $this->_fields[] = $new_field; }else{ return $new_field; } } /** * Add Number Field to meta box * @author Ohad Raz * @since 1.0 * @access public * @param $id string field id, i.e. the meta key * @param $args mixed|array * 'name' => // field name/label string optional * 'desc' => // field description, string optional * 'std' => // default value, string optional * 'style' => // custom style for field, string optional * 'validate_func' => // validate function, string optional * @param $repeater bool is this a field inside a repeatr? true|false(default) */ public function addNumber($id,$args,$repeater=false){ $new_field = array('type' => 'number','id'=> $id,'std' => '0','desc' => '','style' =>'','name' => 'Number Field','step' => '1','min' => '0'); $new_field = array_merge($new_field, $args); if(false === $repeater){ $this->_fields[] = $new_field; }else{ return $new_field; } } /** * Add code Editor to meta box * @author Ohad Raz * @since 2.1 * @access public * @param $id string field id, i.e. the meta key * @param $args mixed|array * 'name' => // field name/label string optional * 'desc' => // field description, string optional * 'std' => // default value, string optional * 'style' => // custom style for field, string optional * 'syntax' => // syntax language to use in editor (php,javascript,css,html) * 'validate_func' => // validate function, string optional * @param $repeater bool is this a field inside a repeatr? true|false(default) */ public function addCode($id,$args,$repeater=false){ $new_field = array('type' => 'code','id'=> $id,'std' => '','desc' => '','style' =>'','name' => 'Code Editor Field','syntax' => 'php','theme' => 'defualt'); $new_field = array_merge($new_field, $args); if(false === $repeater){ $this->_fields[] = $new_field; }else{ return $new_field; } } /** * Add Hidden Field to meta box * @author Ohad Raz * @since 0.1.3 * @access public * @param $id string field id, i.e. the meta key * @param $args mixed|array * 'name' => // field name/label string optional * 'desc' => // field description, string optional * 'std' => // default value, string optional * 'style' => // custom style for field, string optional * 'validate_func' => // validate function, string optional * @param $repeater bool is this a field inside a repeatr? true|false(default) */ public function addHidden($id,$args,$repeater=false){ $new_field = array('type' => 'hidden','id'=> $id,'std' => '','desc' => '','style' =>'','name' => 'Text Field'); $new_field = array_merge($new_field, $args); if(false === $repeater){ $this->_fields[] = $new_field; }else{ return $new_field; } } /** * Add Paragraph to meta box * @author Ohad Raz * @since 0.1.3 * @access public * @param $id string field id, i.e. the meta key * @param $value paragraph html * @param $repeater bool is this a field inside a repeatr? true|false(default) */ public function addParagraph($id,$args,$repeater=false){ $new_field = array('type' => 'paragraph','id'=> $id,'value' => ''); $new_field = array_merge($new_field, $args); if(false === $repeater){ $this->_fields[] = $new_field; }else{ return $new_field; } } /** * Add Checkbox Field to meta box * @author Ohad Raz * @since 1.0 * @access public * @param $id string field id, i.e. the meta key * @param $args mixed|array * 'name' => // field name/label string optional * 'desc' => // field description, string optional * 'std' => // default value, string optional * 'validate_func' => // validate function, string optional * @param $repeater bool is this a field inside a repeatr? true|false(default) */ public function addCheckbox($id,$args,$repeater=false){ $new_field = array('type' => 'checkbox','id'=> $id,'std' => '','desc' => '','style' =>'','name' => 'Checkbox Field'); $new_field = array_merge($new_field, $args); if(false === $repeater){ $this->_fields[] = $new_field; }else{ return $new_field; } } /** * Add CheckboxList Field to meta box * @author Ohad Raz * @since 1.0 * @access public * @param $id string field id, i.e. the meta key * @param $options (array) array of key => value pairs for select options * @param $args mixed|array * 'name' => // field name/label string optional * 'desc' => // field description, string optional * 'std' => // default value, string optional * 'validate_func' => // validate function, string optional * @param $repeater bool is this a field inside a repeatr? true|false(default) * * @return : remember to call: $checkbox_list = get_post_meta(get_the_ID(), 'meta_name', false); * which means the last param as false to get the values in an array */ public function addCheckboxList($id,$options,$args,$repeater=false){ $new_field = array('type' => 'checkbox_list','id'=> $id,'std' => '','desc' => '','style' =>'','name' => 'Checkbox List Field','options' =>$options,'multiple' => true,); $new_field = array_merge($new_field, $args); if(false === $repeater){ $this->_fields[] = $new_field; }else{ return $new_field; } } /** * Add Textarea Field to meta box * @author Ohad Raz * @since 1.0 * @access public * @param $id string field id, i.e. the meta key * @param $args mixed|array * 'name' => // field name/label string optional * 'desc' => // field description, string optional * 'std' => // default value, string optional * 'style' => // custom style for field, string optional * 'validate_func' => // validate function, string optional * @param $repeater bool is this a field inside a repeatr? true|false(default) */ public function addTextarea($id,$args,$repeater=false){ $new_field = array('type' => 'textarea','id'=> $id,'std' => '','desc' => '','style' =>'','name' => 'Textarea Field'); $new_field = array_merge($new_field, $args); if(false === $repeater){ $this->_fields[] = $new_field; }else{ return $new_field; } } /** * Add Select Field to meta box * @author Ohad Raz * @since 1.0 * @access public * @param $id string field id, i.e. the meta key * @param $options (array) array of key => value pairs for select options * @param $args mixed|array * 'name' => // field name/label string optional * 'desc' => // field description, string optional * 'std' => // default value, (array) optional * 'multiple' => // select multiple values, optional. Default is false. * 'validate_func' => // validate function, string optional * @param $repeater bool is this a field inside a repeatr? true|false(default) */ public function addSelect($id,$options,$args,$repeater=false){ $new_field = array('type' => 'select','id'=> $id,'std' => array(),'desc' => '','style' =>'','name' => 'Select Field','multiple' => false,'options' => $options); $new_field = array_merge($new_field, $args); if(false === $repeater){ $this->_fields[] = $new_field; }else{ return $new_field; } } /** * Add Radio Field to meta box * @author Ohad Raz * @since 1.0 * @access public * @param $id string field id, i.e. the meta key * @param $options (array) array of key => value pairs for radio options * @param $args mixed|array * 'name' => // field name/label string optional * 'desc' => // field description, string optional * 'std' => // default value, string optional * 'validate_func' => // validate function, string optional * @param $repeater bool is this a field inside a repeatr? true|false(default) */ public function addRadio($id,$options,$args,$repeater=false){ $new_field = array('type' => 'radio','id'=> $id,'std' => array(),'desc' => '','style' =>'','name' => 'Radio Field','options' => $options); $new_field = array_merge($new_field, $args); if(false === $repeater){ $this->_fields[] = $new_field; }else{ return $new_field; } } /** * Add Date Field to meta box * @author Ohad Raz * @since 1.0 * @access public * @param $id string field id, i.e. the meta key * @param $args mixed|array * 'name' => // field name/label string optional * 'desc' => // field description, string optional * 'std' => // default value, string optional * 'validate_func' => // validate function, string optional * 'format' => // date format, default yy-mm-dd. Optional. Default "'d MM, yy'" See more formats here: http://goo.gl/Wcwxn * @param $repeater bool is this a field inside a repeatr? true|false(default) */ public function addDate($id,$args,$repeater=false){ $new_field = array('type' => 'date','id'=> $id,'std' => '','desc' => '','format'=>'d MM, yy','name' => 'Date Field'); $new_field = array_merge($new_field, $args); if(false === $repeater){ $this->_fields[] = $new_field; }else{ return $new_field; } } /** * Add Time Field to meta box * @author Ohad Raz * @since 1.0 * @access public * @param $id string- field id, i.e. the meta key * @param $args mixed|array * 'name' => // field name/label string optional * 'desc' => // field description, string optional * 'std' => // default value, string optional * 'validate_func' => // validate function, string optional * 'format' => // time format, default hh:mm. Optional. See more formats here: http://goo.gl/83woX * @param $repeater bool is this a field inside a repeatr? true|false(default) */ public function addTime($id,$args,$repeater=false){ $new_field = array('type' => 'time','id'=> $id,'std' => '','desc' => '','format'=>'hh:mm','name' => 'Time Field', 'ampm' => false); $new_field = array_merge($new_field, $args); if(false === $repeater){ $this->_fields[] = $new_field; }else{ return $new_field; } } /** * Add Color Field to meta box * @author Ohad Raz * @since 1.0 * @access public * @param $id string field id, i.e. the meta key * @param $args mixed|array * 'name' => // field name/label string optional * 'desc' => // field description, string optional * 'std' => // default value, string optional * 'validate_func' => // validate function, string optional * @param $repeater bool is this a field inside a repeatr? true|false(default) */ public function addColor($id,$args,$repeater=false){ $new_field = array('type' => 'color','id'=> $id,'std' => '','desc' => '','name' => 'ColorPicker Field'); $new_field = array_merge($new_field, $args); if(false === $repeater){ $this->_fields[] = $new_field; }else{ return $new_field; } } /** * Add Image Field to meta box * @author Ohad Raz * @since 1.0 * @access public * @param $id string field id, i.e. the meta key * @param $args mixed|array * 'name' => // field name/label string optional * 'desc' => // field description, string optional * 'validate_func' => // validate function, string optional * @param $repeater bool is this a field inside a repeatr? true|false(default) */ public function addImage($id,$args,$repeater=false){ $new_field = array('type' => 'image','id'=> $id,'desc' => '','name' => 'Image Field'); $new_field = array_merge($new_field, $args); if(false === $repeater){ $this->_fields[] = $new_field; }else{ return $new_field; } } /** * Add File Field to meta box * @author Ohad Raz * @since 1.0 * @access public * @param $id string field id, i.e. the meta key * @param $args mixed|array * 'name' => // field name/label string optional * 'desc' => // field description, string optional * 'validate_func' => // validate function, string optional * @param $repeater bool is this a field inside a repeatr? true|false(default) */ public function addFile($id,$args,$repeater=false){ $new_field = array('type' => 'file','id'=> $id,'desc' => '','name' => 'File Field'); $new_field = array_merge($new_field, $args); if(false === $repeater){ $this->_fields[] = $new_field; }else{ return $new_field; } } /** * Add WYSIWYG Field to meta box * @author Ohad Raz * @since 1.0 * @access public * @param $id string field id, i.e. the meta key * @param $args mixed|array * 'name' => // field name/label string optional * 'desc' => // field description, string optional * 'std' => // default value, string optional * 'style' => // custom style for field, string optional Default 'width: 300px; height: 400px' * 'validate_func' => // validate function, string optional * @param $repeater bool is this a field inside a repeatr? true|false(default) */ public function addWysiwyg($id,$args,$repeater=false){ $new_field = array('type' => 'wysiwyg','id'=> $id,'std' => '','desc' => '','style' =>'width: 300px; height: 400px','name' => 'WYSIWYG Editor Field'); $new_field = array_merge($new_field, $args); if(false === $repeater){ $this->_fields[] = $new_field; }else{ return $new_field; } } /** * Add Taxonomy Field to meta box * @author Ohad Raz * @since 1.0 * @access public * @param $id string field id, i.e. the meta key * @param $options mixed|array options of taxonomy field * 'taxonomy' => // taxonomy name can be category,post_tag or any custom taxonomy default is category * 'type' => // how to show taxonomy? 'select' (default) or 'checkbox_list' * 'args' => // arguments to query taxonomy, see http://goo.gl/uAANN default ('hide_empty' => false) * @param $args mixed|array * 'name' => // field name/label string optional * 'desc' => // field description, string optional * 'std' => // default value, string optional * 'validate_func' => // validate function, string optional * @param $repeater bool is this a field inside a repeatr? true|false(default) */ public function addTaxonomy($id,$options,$args,$repeater=false){ $temp = array( 'args' => array('hide_empty' => 0), 'tax' => 'category', 'type' => 'select'); $options = array_merge($temp,$options); $new_field = array('type' => 'taxonomy','id'=> $id,'desc' => '','name' => 'Taxonomy Field','options'=> $options); $new_field = array_merge($new_field, $args); if(false === $repeater){ $this->_fields[] = $new_field; }else{ return $new_field; } } /** * Add posts Field to meta box * @author Ohad Raz * @since 1.0 * @access public * @param $id string field id, i.e. the meta key * @param $options mixed|array options of taxonomy field * 'post_type' => // post type name, 'post' (default) 'page' or any custom post type * 'type' => // how to show posts? 'select' (default) or 'checkbox_list' * 'args' => // arguments to query posts, see http://goo.gl/is0yK default ('posts_per_page' => -1) * @param $args mixed|array * 'name' => // field name/label string optional * 'desc' => // field description, string optional * 'std' => // default value, string optional * 'validate_func' => // validate function, string optional * @param $repeater bool is this a field inside a repeatr? true|false(default) */ public function addPosts($id,$options,$args,$repeater=false){ $post_type = isset($options['post_type'])? $options['post_type']: (isset($args['post_type']) ? $args['post_type']: 'post'); $q = array('posts_per_page' => -1, 'post_type' => $post_type); $temp = array('post_type' =>$post_type,'type'=>'select','args'=>$q); $options = array_merge($temp,$options); $new_field = array('type' => 'posts','id'=> $id,'desc' => '','name' => 'Posts Field','options'=> $options); $new_field = array_merge($new_field, $args); if(false === $repeater){ $this->_fields[] = $new_field; }else{ return $new_field; } } /** * Add repeater Field Block to meta box * @author Ohad Raz * @since 1.0 * @access public * @param $id string field id, i.e. the meta key * @param $args mixed|array * 'name' => // field name/label string optional * 'desc' => // field description, string optional * 'std' => // default value, string optional * 'style' => // custom style for field, string optional * 'validate_func' => // validate function, string optional * 'fields' => //fields to repeater */ public function addRepeaterBlock($id,$args){ $new_field = array('type' => 'repeater','id'=> $id,'name' => 'Reapeater Field','fields' => array(),'inline'=> false,'sortable' => false); $new_field = array_merge($new_field, $args); $this->_fields[] = $new_field; } /** * Add Checkbox conditional Field to Page * @author Ohad Raz * @since 2.9.9 * @access public * @param $id string field id, i.e. the key * @param $args mixed|array * 'name' => // field name/label string optional * 'desc' => // field description, string optional * 'std' => // default value, string optional * 'validate_func' => // validate function, string optional * 'fields' => list of fields to show conditionally. * @param $repeater bool is this a field inside a repeatr? true|false(default) */ public function addCondition($id,$args,$repeater=false){ $new_field = array('type' => 'cond','id'=> $id,'std' => '','desc' => '','style' =>'','name' => 'Conditional Field','fields' => array()); $new_field = array_merge($new_field, $args); if(false === $repeater){ $this->_fields[] = $new_field; }else{ return $new_field; } } /** * Finish Declaration of Meta Box * @author Ohad Raz * @since 1.0 * @access public */ public function Finish() { $this->add_missed_values(); } /** * Helper function to check for empty arrays * @author Ohad Raz * @since 1.5 * @access public * @param $args mixed|array */ public function is_array_empty($array){ if (!is_array($array)) return true; foreach ($array as $a){ if (is_array($a)){ foreach ($a as $sub_a){ if (!empty($sub_a) && $sub_a != '') return false; } }else{ if (!empty($a) && $a != '') return false; } } return true; } /** * load_textdomain * @author Ohad Raz * @since 2.9.4 * @return void */ public function load_textdomain(){ //In themes/plugins/mu-plugins directory load_textdomain( 'mmb', dirname(__FILE__) . '/lang/' . get_locale() .'mo' ); } } // End Class endif; // End Check Class Exists