You are here

function total_control_node_types_content_type_admin_info in Total Control Admin Dashboard 7.2

Same name and namespace in other branches
  1. 6.2 plugins/content_types/node_types.inc \total_control_node_types_content_type_admin_info()

'Admin info' callback for the content type.

File

plugins/content_types/node_types.inc, line 33

Code

function total_control_node_types_content_type_admin_info($subtype = NULL, $conf = NULL, $context = NULL) {
  $block = new stdClass();
  $block->title = t('Provides links to manage content types.');
  return $block;
}