You are here

function total_control_overview_content_ctools_content_types in Total Control Admin Dashboard 6

Implementation of specially named hook_ctools_content_types()

1 call to total_control_overview_content_ctools_content_types()
total_control_overview_content_content_type_render in plugins/content_types/overview_content.inc

File

plugins/content_types/overview_content.inc, line 6

Code

function total_control_overview_content_ctools_content_types() {
  return array(
    'single' => TRUE,
    'icon' => 'icon_node_form.png',
    'no title override' => TRUE,
    'title' => t('Content Overview'),
    'description' => t('Displays a summary of content statistics including: number pieces of each type of content, number of comments, number of blocked comments (spam), and if ') . l(t('allowed'), 'admin/settings/total_control') . t(', content-type configuration links.'),
    'category' => t('Total Control'),
    'js' => array(
      'misc/autocomplete.js',
      'misc/textarea.js',
      'misc/collapse.js',
    ),
    'defaults' => array(
      'types' => NULL,
      'comments' => NULL,
      'spam' => 1,
    ),
  );
}