You are here

function content_access_admin_paths in Content Access 7

Implements hook_admin_paths().

File

./content_access.module, line 36
Content access module file.

Code

function content_access_admin_paths() {
  $paths = array(
    'node/*/access' => TRUE,
  );
  return $paths;
}