当前位置: 首页>>代码示例>>PHP>>正文


PHP FLBuilderModel::add_col_group方法代码示例

本文整理汇总了PHP中FLBuilderModel::add_col_group方法的典型用法代码示例。如果您正苦于以下问题:PHP FLBuilderModel::add_col_group方法的具体用法?PHP FLBuilderModel::add_col_group怎么用?PHP FLBuilderModel::add_col_group使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在FLBuilderModel的用法示例。


在下文中一共展示了FLBuilderModel::add_col_group方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。

示例1: render_new_column_group

 /**
  * Renders the layout data for a new column group.
  *
  * @since 1.7
  * @param string $node_id The node ID of a row to add the new group to.
  * @param string $cols The type of column layout to use.
  * @param int $position The position of the new column group in the row.
  * @return array
  */
 public static function render_new_column_group($node_id, $cols = '1-col', $position = false)
 {
     // Add the group.
     $group = FLBuilderModel::add_col_group($node_id, $cols, $position);
     // Render the group.
     ob_start();
     FLBuilder::render_column_group($group);
     $html = ob_get_clean();
     // Return the response.
     return array('partial' => true, 'nodeType' => $group->type, 'html' => $html, 'js' => 'FLBuilder._renderLayoutComplete();');
 }
开发者ID:onedaylabs,项目名称:onedaylabs.com,代码行数:20,代码来源:class-fl-builder-ajax-layout.php

示例2: render_new_column_group

 /**
  * Adds a new column group and renders it.
  *
  * @since 1.0
  * @param string $node_id The node ID of a row to add the new group to.
  * @param string $cols The type of column layout to use.
  * @param int $position The position of the new column group in the row.
  * @return void
  */
 public static function render_new_column_group($node_id = null, $cols = '1-col', $position = false)
 {
     $post_data = FLBuilderModel::get_post_data();
     $node_id = isset($post_data['node_id']) ? $post_data['node_id'] : $node_id;
     $cols = isset($post_data['cols']) ? $post_data['cols'] : $cols;
     $position = isset($post_data['position']) ? (int) $post_data['position'] : $position;
     $group = FLBuilderModel::add_col_group($node_id, $cols, $position);
     self::render_column_group($group);
     if (defined('DOING_AJAX')) {
         die;
     }
 }
开发者ID:komcdo,项目名称:iSSNA-WordPress,代码行数:21,代码来源:class-fl-builder.php


注:本文中的FLBuilderModel::add_col_group方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。