function linkit_profiles::list_table_header in Linkit 7.3
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/ linkit_profiles.class.php, line 62 - Contains the Linkit profile export UI integration code.
Class
- linkit_profiles
- Linktit profile export UI class handler for Views UI.
Code
function list_table_header() {
$header = array();
$header[] = array(
'data' => t('Title'),
'class' => array(
'ctools-export-ui-title',
),
);
$header[] = array(
'data' => t('Profile type'),
'class' => array(
'ctools-export-ui-profile-type',
),
);
$header[] = array(
'data' => t('Storage'),
'class' => array(
'ctools-export-ui-storage',
),
);
$header[] = array(
'data' => t('Operations'),
'class' => array(
'ctools-export-ui-operations',
),
);
return $header;
}