function stylizer_ui::list_table_header in Chaos Tool Suite (ctools) 6
Same name and namespace in other branches
- 7 stylizer/plugins/export_ui/stylizer_ui.class.php \stylizer_ui::list_table_header()
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
- stylizer/
plugins/ export_ui/ stylizer_ui.class.php, line 155
Class
- stylizer_ui
- UI class for Stylizer.
Code
function list_table_header() {
return array(
array(
'data' => t('Type'),
'class' => 'ctools-export-ui-type',
),
array(
'data' => t('Name'),
'class' => 'ctools-export-ui-name',
),
array(
'data' => t('Title'),
'class' => 'ctools-export-ui-title',
),
array(
'data' => t('Base'),
'class' => 'ctools-export-ui-base',
),
array(
'data' => t('Storage'),
'class' => 'ctools-export-ui-storage',
),
array(
'data' => t('Operations'),
'class' => 'ctools-export-ui-operations',
),
);
}