You are here

function content_type_groups_admin_add_page in Content type groups 7.2

Add new content type group page callback.

1 string reference to 'content_type_groups_admin_add_page'
ContentTypeGroupUIController::hook_menu in ./content_type_groups.controller.inc
Overrides hook_menu() defaults.

File

./content_type_groups.admin.inc, line 47
Admin page callback file for the Content type groups module.

Code

function content_type_groups_admin_add_page() {
  $group = entity_create('content_type_group', array());
  return drupal_get_form('content_type_groups_group_form', $group);
}