-
-
Save labboy0276/085e52853c779dfed703 to your computer and use it in GitHub Desktop.
alec
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* Implements hook_menu(). | |
*/ | |
function cvt_termination_menu() { | |
$items = array(); | |
$items['terminate/%userid/%'] = array( | |
'type' => MENU_LOCAL_TASK, | |
'page callback' => 'node_add', | |
'page arguments' => array('enrollee_termination', 1, 2), | |
'access callback' => 'node_access', | |
'access arguments' => array('create', 'enrollee_termination'), | |
'file' => 'node.pages.inc', | |
'file path' => drupal_get_path('module', 'node') | |
); | |
return $items; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment