function node_field_admin_paths in Node Field 7.2
Implements hook_admin_paths().
File
- ./
node_field.module, line 88 - This module provide ability to add extra fields to any single node.
Code
function node_field_admin_paths() {
$paths = [
'node/*/node-field' => TRUE,
'node/*/node-field/*' => TRUE,
];
return $paths;
}