// SYSTEM PANEL //
[ROOT]
/
home
/
salvufkx
/
homedir
/
public_html
/
wp-content
/
plugins
/
gallery-images-ape
/
libs
/
metabox
[ PARENT ]
EDIT :: size.php
<?php /* * Ape Gallery http://wpape.net * Version: 1.2.4 - 61253 * Author: Wp Ape (c) * Author URI: http://wpape.net * License: GPL-2.0+ * License URI: http://www.gnu.org/licenses/gpl-2.0.txt * Date: Thu, 08 Dec 2016 16:31:35 GMT */ $size_metabox = new_cmb2_box( array( 'id' => WPAPE_GALLERY_NAMESPACE . 'size_metabox', 'title' => __('Size' , 'wpape_gallery' ), 'object_types' => array( WPAPE_GALLERY_POST ), 'cmb_styles' => false, 'show_names' => false, 'context' => 'normal', 'priority' => 'high', )); $size_metabox->add_field( array( 'name' => __('Width ', 'wpape_gallery'), 'id' => WPAPE_GALLERY_NAMESPACE . 'width-size', 'type' => 'multisize', 'default' => array( 'width'=> 100, 'widthType'=>''), 'before_row' => ' <br /> <div class="wpape_block">', )); $size_metabox->add_field( array( 'name' => __('Spacing', 'wpape_gallery'), 'id' => WPAPE_GALLERY_NAMESPACE . 'paddingCustom', 'type' => 'padding', 'default' => array( 'left'=> 0, 'top'=> 0, 'right'=> 0, 'bottom'=> 0), )); $size_metabox->add_field( array( 'name' => __('Colums ', 'wpape_gallery'), 'id' => WPAPE_GALLERY_NAMESPACE . 'colums', 'type' => 'colums', 'default' => wpApeGalleryHelperClass::defaultValue(1), 'before_row' => '<br /> <div class="alert alert-info col-md-10 col-md-offset-1 " role="alert">Gallery layout configuration</div> ', 'after_row' => ' </div>', ));
SAVE
CANCEL