You are here

function total_control_create_ctools_content_types in Total Control Admin Dashboard 6

Implementation of specially named hook_ctools_content_types()

File

plugins/content_types/create.inc, line 6

Code

function total_control_create_ctools_content_types() {
  return array(
    'single' => TRUE,
    'icon' => 'icon_node_form.png',
    'no title override' => TRUE,
    'title' => t('Content Creation'),
    'description' => t('Provides links to create new content.'),
    'category' => t('Total Control'),
    'js' => array(
      'misc/autocomplete.js',
      'misc/textarea.js',
      'misc/collapse.js',
    ),
    'defaults' => array(
      'types' => NULL,
    ),
  );
}