本文整理汇总了PHP中Essential_Grid_Base::set_basic_colums_width方法的典型用法代码示例。如果您正苦于以下问题:PHP Essential_Grid_Base::set_basic_colums_width方法的具体用法?PHP Essential_Grid_Base::set_basic_colums_width怎么用?PHP Essential_Grid_Base::set_basic_colums_width使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Essential_Grid_Base
的用法示例。
在下文中一共展示了Essential_Grid_Base::set_basic_colums_width方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: output_grid_javascript
public function output_grid_javascript($load_lightbox = false, $is_demo = false)
{
$base = new Essential_Grid_Base();
$hide_markup_before_load = $base->getVar($this->grid_params, 'hide-markup-before-load', 'off');
$layout = $base->getVar($this->grid_params, 'layout', 'even');
$force_full_width = $base->getVar($this->grid_params, 'force_full_width', 'off');
$content_push = $base->getVar($this->grid_params, 'content-push', 'off');
$rows_unlimited = $base->getVar($this->grid_params, 'rows-unlimited', 'on');
$load_more_type = $base->getVar($this->grid_params, 'load-more', 'on');
$rows = $base->getVar($this->grid_params, 'rows', 4, 'i');
$columns = $base->getVar($this->grid_params, 'columns', '');
$columns = $base->set_basic_colums($columns);
$columns_advanced = $base->getVar($this->grid_params, 'columns-advanced', 'off');
if ($columns_advanced == 'on') {
$columns_width = $base->getVar($this->grid_params, 'columns-width', '');
} else {
$columns_width = array();
//get defaults
}
$columns_width = $base->set_basic_colums_width($columns_width);
$space = $base->getVar($this->grid_params, 'spacings', 0, 'i');
$page_animation = $base->getVar($this->grid_params, 'grid-animation', 'scale');
$anim_speed = $base->getVar($this->grid_params, 'grid-animation-speed', 800, 'i');
$delay_basic = $base->getVar($this->grid_params, 'grid-animation-delay', 1, 'i');
$delay_hover = $base->getVar($this->grid_params, 'hover-animation-delay', 1, 'i');
$filter_type = $base->getVar($this->grid_params, 'filter-arrows', 'single');
$filter_logic = $base->getVar($this->grid_params, 'filter-logic', 'or');
$filter_show_on = $base->getVar($this->grid_params, 'filter-show-on', 'hover');
$lightbox_mode = $base->getVar($this->grid_params, 'lightbox-mode', 'single');
$lightbox_mode = $lightbox_mode == 'content' || $lightbox_mode == 'content-gallery' || $lightbox_mode == 'woocommerce-gallery' ? 'contentgroup' : $lightbox_mode;
$layout_sizing = $base->getVar($this->grid_params, 'layout-sizing', 'boxed');
$layout_offset_container = $base->getVar($this->grid_params, 'fullscreen-offset-container', '');
$aspect_ratio_x = $base->getVar($this->grid_params, 'x-ratio', 4, 'i');
$aspect_ratio_y = $base->getVar($this->grid_params, 'y-ratio', 3, 'i');
$lazy_load = $base->getVar($this->grid_params, 'lazy-loading', 'off');
$lazy_load_color = $base->getVar($this->grid_params, 'lazy-load-color', '#FFFFFF');
$spinner = $base->getVar($this->grid_params, 'use-spinner', '0');
$spinner_color = $base->getVar($this->grid_params, 'spinner-color', '#FFFFFF');
//LIGHTBOX VARIABLES
$usetwitter = $base->getVar($this->grid_params, 'lightbox-twitter', 'off');
$usefacebook = $base->getVar($this->grid_params, 'lightbox-facebook', 'off');
$lightbox_title_type = $base->getVar($this->grid_params, 'lightbox-type', "null");
$lightbox_position = $base->getVar($this->grid_params, 'lightbox-position', 'bottom');
$lightbox_effect_open_close = $base->getVar($this->grid_params, 'lightbox-effect-open-close', 'fade');
$lightbox_effect_next_prev = $base->getVar($this->grid_params, 'lightbox-effect-next-prev', 'fade');
$lightbox_effect_open_close_speed = $base->getVar($this->grid_params, 'lightbox-effect-open-close-speed', 'normal');
$lightbox_effect_next_prev_speed = $base->getVar($this->grid_params, 'lightbox-effect-next-prev-speed', 'normal');
$lightbox_arrows = $base->getVar($this->grid_params, 'lightbox-arrows', 'on');
$lightbox_thumbs = $base->getVar($this->grid_params, 'lightbox-thumbs', 'off');
$lightbox_thumbs_w = $base->getVar($this->grid_params, 'lbox-thumb-w', '50');
$lightbox_thumbs_h = $base->getVar($this->grid_params, 'lbox-thumb-h', '50');
$linebreak = '\'<br />\'';
$twitteraddon = '\'<a href="https://twitter.com/share" class="twitter-share-button" data-count="none" data-url="\'+this.href+\'">' . __('Tweet', EG_TEXTDOMAIN) . '</a>\'';
$facebookaddon = '\'<iframe src="//www.facebook.com/plugins/like.php?href=\'+this.href+\'&layout=button_count&show_faces=true&width=500&action=like&font&colorscheme=light&height=23" scrolling="no" frameborder="0" style="border:none; overflow:hidden; width:110px; height:23px;" allowTransparency="true"></iframe>\'';
$lbox_padding = $base->getVar($this->grid_params, 'lbox-padding', array('0', '0', '0', '0'));
$lbox_inpadding = $base->getVar($this->grid_params, 'lbox-inpadding', array('0', '0', '0', '0'));
$rtl = $base->getVar($this->grid_params, 'rtl', 'off');
$wait_for_fonts = get_option('tp_eg_wait_for_fonts', 'true');
$pagination_numbers = $base->getVar($this->grid_params, 'pagination-numbers', 'smart');
$pagination_scroll = $base->getVar($this->grid_params, 'pagination-scroll', 'off');
$pagination_scroll_offset = $base->getVar($this->grid_params, 'pagination-scroll-offset', '0', 'i');
$ajax_callback = $base->getVar($this->grid_params, 'ajax-callback', '');
$ajax_css_url = $base->getVar($this->grid_params, 'ajax-css-url', '');
$ajax_js_url = $base->getVar($this->grid_params, 'ajax-js-url', '');
$ajax_scroll_onload = $base->getVar($this->grid_params, 'ajax-scroll-onload', 'on');
$ajax_callback_argument = $base->getVar($this->grid_params, 'ajax-callback-arg', 'on');
$ajax_content_id = $base->getVar($this->grid_params, 'ajax-container-id', '');
$ajax_scrollto_offset = $base->getVar($this->grid_params, 'ajax-scrollto-offset', '0');
$ajax_close_button = $base->getVar($this->grid_params, 'ajax-close-button', 'off');
$ajax_button_nav = $base->getVar($this->grid_params, 'ajax-nav-button', 'off');
$ajax_content_sliding = $base->getVar($this->grid_params, 'ajax-content-sliding', 'on');
$ajax_button_type = $base->getVar($this->grid_params, 'ajax-button-type', 'button');
if ($ajax_button_type == 'type2') {
$ajax_button_text = $base->getVar($this->grid_params, 'ajax-button-text', __('Close', EG_TEXTDOMAIN));
}
$ajax_button_skin = $base->getVar($this->grid_params, 'ajax-button-skin', 'light');
$ajax_button_inner = $base->getVar($this->grid_params, 'ajax-button-inner', 'false');
$ajax_button_h_pos = $base->getVar($this->grid_params, 'ajax-button-h-pos', 'r');
$ajax_button_v_pos = $base->getVar($this->grid_params, 'ajax-button-v-pos', 't');
$cobbles_pattern = $base->getVar($this->grid_params, 'cobbles-pattern', array());
$use_cobbles_pattern = $base->getVar($this->grid_params, 'use-cobbles-pattern', 'off');
$cookie_time = intval($base->getVar($this->grid_params, 'cookie-save-time', '30'));
$cookie_search = $base->getVar($this->grid_params, 'cookie-save-search', 'off');
$cookie_filter = $base->getVar($this->grid_params, 'cookie-save-filter', 'off');
$cookie_pagination = $base->getVar($this->grid_params, 'cookie-save-pagination', 'off');
$js_to_footer = get_option('tp_eg_js_to_footer', 'false') == 'true' ? true : false;
//add inline style into the footer
if ($js_to_footer && $is_demo == false) {
ob_start();
}
echo '<script type="text/javascript">' . "\n";
if ($hide_markup_before_load == 'off') {
echo 'function eggbfc(winw,resultoption) {' . "\n";
echo ' var lasttop = winw,' . "\n";
echo ' lastbottom = 0,' . "\n";
echo ' smallest =9999,' . "\n";
echo ' largest = 0,' . "\n";
echo ' samount = 0,' . "\n";
echo ' lamoung = 0,' . "\n";
echo ' lastamount = 0,' . "\n";
//.........这里部分代码省略.........
示例2: explode
$title = __('Settings', EG_TEXTDOMAIN);
$layers = $grid['layers'];
}
}
$postTypesWithCats = $base->getPostTypesWithCatsForClient();
$jsonTaxWithCats = $base->jsonEncodeForClientSide($postTypesWithCats);
$base = new Essential_Grid_Base();
$pages = get_pages(array('sort_column' => 'post_name'));
$post_elements = $base->getPostTypesAssoc();
$postTypes = $base->getVar($grid['postparams'], 'post_category', 'post');
$categories = $base->setCategoryByPostTypes($postTypes, $postTypesWithCats);
$selected_pages = explode(',', $base->getVar($grid['postparams'], 'selected_pages', '-1', 's'));
$columns = $base->getVar($grid['params'], 'columns', '');
$columns = $base->set_basic_colums($columns);
$columns_width = $base->getVar($grid['params'], 'columns-width', '');
$columns_width = $base->set_basic_colums_width($columns_width);
$columns_height = $base->getVar($grid['params'], 'columns-height', '');
$columns_height = $base->set_basic_colums_height($columns_height);
$columns_advanced[] = $base->getVar($grid['params'], 'columns-advanced-rows-0', '');
$columns_advanced[] = $base->getVar($grid['params'], 'columns-advanced-rows-1', '');
$columns_advanced[] = $base->getVar($grid['params'], 'columns-advanced-rows-2', '');
$columns_advanced[] = $base->getVar($grid['params'], 'columns-advanced-rows-3', '');
$columns_advanced[] = $base->getVar($grid['params'], 'columns-advanced-rows-4', '');
$columns_advanced[] = $base->getVar($grid['params'], 'columns-advanced-rows-5', '');
$columns_advanced[] = $base->getVar($grid['params'], 'columns-advanced-rows-6', '');
$columns_advanced[] = $base->getVar($grid['params'], 'columns-advanced-rows-7', '');
$columns_advanced[] = $base->getVar($grid['params'], 'columns-advanced-rows-8', '');
$columns_advanced[] = $base->getVar($grid['params'], 'columns-advanced-rows-9', '');
$nav_skin_choosen = $base->getVar($grid['params'], 'navigation-skin', 'minimal-light');
$navigation_skins = $nav_skin->get_essential_navigation_skins();
$navigation_skin_css = $base->jsonEncodeForClientSide($navigation_skins);