public function footable_breakpoint::list_table_header in FooTable 7.2
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.
Overrides ctools_export_ui::list_table_header
File
- plugins/
export_ui/ footable_breakpoint.class.php, line 26 - Provide FooTable breakpoint Ctools export ui integration.
Class
- footable_breakpoint
- @file Provide FooTable breakpoint Ctools export ui integration.
Code
public function list_table_header() {
return array(
array(
'data' => t('Name'),
'class' => array(
'ctools-export-ui-name',
),
),
array(
'data' => t('Machine name'),
'class' => array(
'ctools-export-ui-machine-name',
),
),
array(
'data' => t('Breakpoint'),
'class' => array(
'ctools-export-ui-breakpoint',
),
),
array(
'data' => t('Storage'),
'class' => array(
'ctools-export-ui-storage',
),
),
array(
'data' => t('Operations'),
'class' => array(
'ctools-export-ui-operations',
),
),
);
}