You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
12 lines
300 B
12 lines
300 B
14 years ago
|
<?php
|
||
|
|
||
|
function fedora_nmlt_menu_alter(&$items) {
|
||
|
$items["node/%node/result"] = array(
|
||
|
'title' => 'Results',
|
||
|
'page callback' => 'scorm_show_results',
|
||
|
'page arguments' => array(1),
|
||
|
'access callback' => user_access('use scorm'),
|
||
|
'type' => MENU_NORMAL_ITEM,
|
||
|
);
|
||
|
return $items;
|
||
|
}
|