You are here

function semantic_panels_style_ui::list_table_header in Semantic Panels 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/semantic_panels_style_ui.class.php, line 55

Class

semantic_panels_style_ui
Base class for export UI.

Code

function list_table_header() {
  return array(
    array(
      'data' => t('Title'),
      'class' => array(
        'ctools-export-ui-title',
      ),
    ),
    array(
      'data' => t('Machine Name'),
      'class' => array(
        'ctools-export-ui-name',
      ),
    ),
    array(
      'data' => t('Category'),
      'class' => array(
        'ctools-export-ui-category',
      ),
    ),
    array(
      'data' => t('Storage'),
      'class' => array(
        'ctools-export-ui-storage',
      ),
    ),
    array(
      'data' => t('Operations'),
      'class' => array(
        'ctools-export-ui-operations',
      ),
    ),
  );
}