// SYSTEM PANEL //
[ROOT]
/
home
/
salvufkx
/
homedir
/
public_html
/
wp-content
/
plugins
/
gallery-images-ape
/
libs
/
metabox
[ PARENT ]
EDIT :: overview.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 */ $overviewMetabox = new_cmb2_box( array( 'id' => WPAPE_GALLERY_NAMESPACE . 'overview_metabox', 'title' => __('Interface Overview' , 'wpape_gallery' ), 'object_types' => array( WPAPE_GALLERY_POST ), 'cmb_styles' => false, 'show_names' => false, 'context' => 'normal', 'priority' => 'high', )); $overviewMetabox->add_field( array( 'id' => WPAPE_GALLERY_NAMESPACE . 'overview', 'type' => 'title', 'before_row' => ' <br /> <div class="wpape_block"> <div class="row"> <img class="col-xs-10 col-sm-10 col-md-8 col-lg-6 col-xs-offset-1 col-sm-offset-1 col-md-offset-2 col-lg-offset-3" src="'.WPAPE_GALLERY_URL.'/assets/interface_overview.jpg"> </div> <p><span class="label label-success">1</span> - '.__("top gallery menu. It's contain embedded categories. Styles of this could be edited in menu section").'</p> <p><span class="label label-success">2</span> - '.__("gallery thumbnail. Thumbnails could take different amount of columns as result gallery have different layout").'</p> <p><span class="label label-success">3</span> - '.__("hover effect background. Color and transparency of the hover background could be fully customized").'</p> <p><span class="label label-success">4</span> - '.__("hover effect title. It's title of the image. Title could have different size, style, color").'</p> <p><span class="label label-success">5</span> - '.__("hover link button. Configurable hover and default background and border colors, icon, icon size").'</p> <p><span class="label label-success">6</span> - '.__("hover zoom button. Configurable hover and default background and border colors, icon, icon size").'</p> <p><span class="label label-success">7</span> - '.__("hover description text. It's description of the image. Description could have different size, style, color").'</p> <p><span class="label label-success">8</span> - '.__("another thumbnails which take only one column").'</p> <p><span class="label label-success">9</span> - '.__("every thumbnails have customizable border and shadow ").'</p> <p><span class="label label-success">10</span> - '.__("load more button. It's load more style pagination navigation button").'</p> <p class="text-center"> <button id="wpape_hide_overview" class=" button">'.__("Hide Block", 'wpape_gallery').'</button> </p> </div> <div style="dispay: none;">', 'after_row' => '</div>' ));
SAVE
CANCEL