You are here

function advanced_forum_forum_list_ctools_content_types in Advanced Forum 6.2

Callback function to supply a list of content types.

File

plugins/content_types/forum_list.inc, line 6

Code

function advanced_forum_forum_list_ctools_content_types() {
  return array(
    'single' => TRUE,
    'title' => t('Forum list'),
    'icon' => 'icon_forum.png',
    'description' => t('A list of forums for the forum.'),
    'required context' => new ctools_context_required(t('Forum'), 'forum'),
    'category' => t('Forum'),
    'defaults' => array(),
  );
}