// SYSTEM PANEL //
[ROOT]
/
home
/
salvufkx
/
homedir
/
public_html
/
wp-content
/
plugins
/
gallery-images-ape
/
libs
/
metabox
[ PARENT ]
EDIT :: pagination.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 */ $pagination_metabox = new_cmb2_box( array( 'id' => WPAPE_GALLERY_NAMESPACE.'loading_metabox', 'title' => __('Pagination','wpape_gallery'), 'object_types' => array( WPAPE_GALLERY_POST ), 'context' => 'normal', 'show_names' => false, )); $pagination_metabox->add_field(array( 'name' => __('Lazy Load','wpape_gallery'), 'id' => WPAPE_GALLERY_NAMESPACE . 'lazyLoad', 'type' => 'switch', 'default' => wpApeGalleryHelperClass::defaultValue(1), 'before_row' => ' <div class="wpape_block">', )); $pagination_metabox->add_field( array( 'name' => __('Images','wpape_gallery'), 'id' => WPAPE_GALLERY_NAMESPACE . 'boxesToLoadStart', 'type' => 'wpapetext', 'default' => 12, 'small' => 'xs', )); $pagination_metabox->add_field(array( 'name' => __('Load more','wpape_gallery'), 'id' => WPAPE_GALLERY_NAMESPACE . 'boxesToLoad', 'type' => 'wpapetext', 'default' => 8, 'small' => 'xs', )); $pagination_metabox->add_field( array( 'name' => __('Loading','wpape_gallery'), 'default' => 'Loading...', 'id' => WPAPE_GALLERY_NAMESPACE .'LoadingWord', 'type' => 'wpapetext', 'before_row' => '', )); $pagination_metabox->add_field( array( 'name' => __('Load more','wpape_gallery'), 'default' => 'Load More', 'id' => WPAPE_GALLERY_NAMESPACE .'loadMoreWord', 'type' => 'wpapetext' )); $pagination_metabox->add_field( array( 'name' => __('No images','wpape_gallery'), 'default' => 'No More Entries', 'id' => WPAPE_GALLERY_NAMESPACE .'noMoreEntriesWord', 'type' => 'wpapetext', 'after_row' =>' </div>' ));
SAVE
CANCEL