function node_limit_menu_alter in Node Limit 7
Same name and namespace in other branches
- 8 old/node_limit.module \node_limit_menu_alter()
Implements hook_menu_alter().
File
- ./
node_limit.module, line 105
Code
function node_limit_menu_alter(&$items) {
node_type_cache_reset();
foreach (node_type_get_types() as $type) {
$type_url_str = str_replace('_', '-', $type->type);
// Saving old access callbacks to allow other modules to define their own
variable_set('node_limit_' . $type->type . '_access_callback', $items['node/add/' . $type_url_str]['access callback']);
variable_set('node_limit_' . $type->type . '_access_arguments', $items['node/add/' . $type_url_str]['access arguments']);
$items['node/add/' . $type_url_str]['access callback'] = 'node_limit_access';
$items['node/add/' . $type_url_str]['access arguments'] = array(
$type->type,
);
}
$items['node/add']['access callback'] = '_node_limit_add_access';
}