You are here

function advanced_forum_forum_legend_ctools_content_types in Advanced Forum 6.2

Callback function to supply a list of content types.

File

plugins/content_types/forum_legend.inc, line 6

Code

function advanced_forum_forum_legend_ctools_content_types() {
  return array(
    'single' => TRUE,
    'title' => t('Forum legend'),
    'icon' => 'icon_forum.png',
    'description' => t('The forum legend widget.'),
    'required context' => new ctools_context_required(t('Forum'), 'forum'),
    'category' => t('Forum'),
    'defaults' => array(),
  );
}