You are here

function total_control_overview_ctools_content_types in Total Control Admin Dashboard 6

Implementation of specially named hook_ctools_content_types()

1 call to total_control_overview_ctools_content_types()
total_control_overview_content_type_render in plugins/content_types/overview.inc

File

plugins/content_types/overview.inc, line 6

Code

function total_control_overview_ctools_content_types() {
  return array(
    'single' => TRUE,
    'icon' => 'icon_node_form.png',
    'no title override' => TRUE,
    'title' => t('Site Overview'),
    'description' => t('An overview of both content and users in one pane'),
    'category' => t('Total Control'),
    'js' => array(
      'misc/autocomplete.js',
      'misc/textarea.js',
      'misc/collapse.js',
    ),
    'defaults' => array(
      'type' => NULL,
      'comments' => NULL,
      'spam' => 1,
      'user' => NULL,
      'roles' => NULL,
    ),
  );
}