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


PHP ctools_export_ui::list_table_header方法代码示例

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


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

示例1: foreach

 function list_table_header()
 {
     $headers = parent::list_table_header();
     // Replace the "Title" header with "Label".
     foreach ($headers as $key => $value) {
         if ($value['data'] == t('Title')) {
             $headers[$key]['data'] = t('Label');
             break;
         }
     }
     // Insert the Category header after the first two headers.
     $column = array(array('data' => t('Category'), 'class' => array('ctools-export-ui-category')));
     array_splice($headers, 2, 0, $column);
     return $headers;
 }
开发者ID:anatolic,项目名称:vintage,代码行数:15,代码来源:panels_frame_ui.class.php

示例2: t

 function list_table_header()
 {
     $header = parent::list_table_header();
     $operations = array_pop($header);
     $header[]['data'] = t('Search well profile');
     $header[]['data'] = t('Query');
     $header[]['data'] = t('Exposed');
     $header[] = t('Weight');
     $header[] = $operations;
     return $header;
 }
开发者ID:vejlebib,项目名称:ting_field_search,代码行数:11,代码来源:ting_field_search_ctools_export_ui.class.php

示例3: list_table_header

 /**
  * Overrides parent::list_table_header.
  */
 public function list_table_header()
 {
     $headers = parent::list_table_header();
     $breakpoints_header[] = array('data' => t('Breakpoint'), 'class' => array('ctools-export-ui-breakpoints'));
     array_splice($headers, 2, 0, $breakpoints_header);
     $skin_header[] = array('data' => t('Skin'), 'class' => array('ctools-export-ui-skin'));
     array_splice($headers, 3, 0, $skin_header);
     return $headers;
 }
开发者ID:elm45,项目名称:twistedrail,代码行数:12,代码来源:SlickUi.class.php

示例4: array

 /**
  * Provide the table header.
  *
  * If you've added columns via list_build_row() but are still using a
  * table, override this method to set up the table header.
  */
 function list_table_header()
 {
     $header = parent::list_table_header();
     // Add the order columns as the next to last.
     $last = array_pop($header);
     $header[] = array('data' => t('Weight'));
     $header[] = $last;
     return $header;
 }
开发者ID:JacksonRiver,项目名称:springboard_modules,代码行数:15,代码来源:springboard_tag_export_ui.class.php


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