You are here

function content_menu_alter in Content Construction Kit (CCK) 6.2

Same name and namespace in other branches
  1. 6.3 content.module \content_menu_alter()

Implementation of hook_menu_alter().

File

./content.module, line 67
Allows administrators to associate custom fields to content types.

Code

function content_menu_alter(&$items) {

  // Customize the content types page with our own callback
  $items['admin/content/types']['page callback'] = 'content_types_overview';
  $items['admin/content/types']['file'] = 'content.admin.inc';
  $items['admin/content/types']['file path'] = drupal_get_path('module', 'content') . '/includes';
}