You are here

function addanother_admin_paths in Add Another 7.2

Implements hook_admin_paths().

File

./addanother.module, line 73
The main file for the addanother module.

Code

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