本文整理汇总了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;
}
示例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;
}
示例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;
}
示例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;
}