You are here

function total_control_overview_content_content_type_admin_info in Total Control Admin Dashboard 7.2

Same name and namespace in other branches
  1. 6.2 plugins/content_types/overview_content.inc \total_control_overview_content_content_type_admin_info()
  2. 6 plugins/content_types/overview_content.inc \total_control_overview_content_content_type_admin_info()

'Admin info' callback for the content type.

File

plugins/content_types/overview_content.inc, line 35

Code

function total_control_overview_content_content_type_admin_info($subtype = NULL, $conf = NULL, $context = NULL) {
  $block = new stdClass();
  $block->title = 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/config/control') . t(', content-type configuration links.');
  return $block;
}