mirror of
https://github.com/moodle/moodle.git
synced 2025-01-18 22:08:20 +01:00
MDL-29174 Remove the empty modulename_extend_navigation() stub from 7
modules.
This commit is contained in:
parent
a280078197
commit
8e6530d897
@ -326,26 +326,6 @@ function folder_pluginfile($course, $cm, $context, $filearea, $args, $forcedownl
|
||||
send_stored_file($file, 86400, 0, true);
|
||||
}
|
||||
|
||||
/**
|
||||
* This function extends the global navigation for the site.
|
||||
* It is important to note that you should not rely on PAGE objects within this
|
||||
* body of code as there is no guarantee that during an AJAX request they are
|
||||
* available
|
||||
*
|
||||
* @param navigation_node $navigation The folder node within the global navigation
|
||||
* @param stdClass $course The course object returned from the DB
|
||||
* @param stdClass $module The module object returned from the DB
|
||||
* @param stdClass $cm The course module instance returned from the DB
|
||||
*/
|
||||
function folder_extend_navigation($navigation, $course, $module, $cm) {
|
||||
/**
|
||||
* This is currently just a stub so that it can be easily expanded upon.
|
||||
* When expanding just remove this comment and the line below and then add
|
||||
* you content.
|
||||
*/
|
||||
$navigation->nodetype = navigation_node::NODETYPE_LEAF;
|
||||
}
|
||||
|
||||
/**
|
||||
* Return a list of page types
|
||||
* @param string $pagetype current page type
|
||||
|
@ -390,26 +390,6 @@ function imscp_pluginfile($course, $cm, $context, $filearea, $args, $forcedownlo
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* This function extends the global navigation for the site.
|
||||
* It is important to note that you should not rely on PAGE objects within this
|
||||
* body of code as there is no guarantee that during an AJAX request they are
|
||||
* available
|
||||
*
|
||||
* @param navigation_node $navigation The imscp node within the global navigation
|
||||
* @param stdClass $course The course object returned from the DB
|
||||
* @param stdClass $module The module object returned from the DB
|
||||
* @param stdClass $cm The course module instance returned from the DB
|
||||
*/
|
||||
function imscp_extend_navigation($navigation, $course, $module, $cm) {
|
||||
/**
|
||||
* This is currently just a stub so that it can be easily expanded upon.
|
||||
* When expanding just remove this comment and the line below and then add
|
||||
* you content.
|
||||
*/
|
||||
$navigation->nodetype = navigation_node::NODETYPE_LEAF;
|
||||
}
|
||||
|
||||
/**
|
||||
* Return a list of page types
|
||||
* @param string $pagetype current page type
|
||||
|
@ -788,26 +788,6 @@ function lesson_supports($feature) {
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* This function extends the global navigation for the site.
|
||||
* It is important to note that you should not rely on PAGE objects within this
|
||||
* body of code as there is no guarantee that during an AJAX request they are
|
||||
* available
|
||||
*
|
||||
* @param navigation_node $navigation The lesson node within the global navigation
|
||||
* @param stdClass $course The course object returned from the DB
|
||||
* @param stdClass $module The module object returned from the DB
|
||||
* @param stdClass $cm The course module instance returned from the DB
|
||||
*/
|
||||
function lesson_extend_navigation($navigation, $course, $module, $cm) {
|
||||
/**
|
||||
* This is currently just a stub so that it can be easily expanded upon.
|
||||
* When expanding just remove this comment and the line below and then add
|
||||
* you content.
|
||||
*/
|
||||
$navigation->nodetype = navigation_node::NODETYPE_LEAF;
|
||||
}
|
||||
|
||||
/**
|
||||
* This function extends the settings navigation block for the site.
|
||||
*
|
||||
|
@ -420,27 +420,6 @@ function page_pluginfile($course, $cm, $context, $filearea, $args, $forcedownloa
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
/**
|
||||
* This function extends the global navigation for the site.
|
||||
* It is important to note that you should not rely on PAGE objects within this
|
||||
* body of code as there is no guarantee that during an AJAX request they are
|
||||
* available
|
||||
*
|
||||
* @param navigation_node $navigation The page node within the global navigation
|
||||
* @param stdClass $course The course object returned from the DB
|
||||
* @param stdClass $module The module object returned from the DB
|
||||
* @param stdClass $cm The course module instance returned from the DB
|
||||
*/
|
||||
function page_extend_navigation($navigation, $course, $module, $cm) {
|
||||
/**
|
||||
* This is currently just a stub so that it can be easily expanded upon.
|
||||
* When expanding just remove this comment and the line below and then add
|
||||
* you content.
|
||||
*/
|
||||
$navigation->nodetype = navigation_node::NODETYPE_LEAF;
|
||||
}
|
||||
|
||||
/**
|
||||
* Return a list of page types
|
||||
* @param string $pagetype current page type
|
||||
|
@ -1000,26 +1000,6 @@ function scorm_supports($feature) {
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* This function extends the global navigation for the site.
|
||||
* It is important to note that you should not rely on PAGE objects within this
|
||||
* body of code as there is no guarantee that during an AJAX request they are
|
||||
* available
|
||||
*
|
||||
* @param navigation_node $navigation The scorm node within the global navigation
|
||||
* @param stdClass $course The course object returned from the DB
|
||||
* @param stdClass $module The module object returned from the DB
|
||||
* @param stdClass $cm The course module instance returned from the DB
|
||||
*/
|
||||
function scorm_extend_navigation($navigation, $course, $module, $cm) {
|
||||
/**
|
||||
* This is currently just a stub so that it can be easily expanded upon.
|
||||
* When expanding just remove this comment and the line below and then add
|
||||
* you content.
|
||||
*/
|
||||
$navigation->nodetype = navigation_node::NODETYPE_LEAF;
|
||||
}
|
||||
|
||||
/**
|
||||
* Get the filename for a temp log file
|
||||
*
|
||||
|
@ -813,26 +813,6 @@ function survey_supports($feature) {
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* This fucntion extends the global navigation for the site.
|
||||
* It is important to note that you should not rely on PAGE objects within this
|
||||
* body of code as there is no guarantee that during an AJAX request they are
|
||||
* available
|
||||
*
|
||||
* @param navigation_node $navigation The quiz node within the global navigation
|
||||
* @param stdClass $course The course object returned from the DB
|
||||
* @param stdClass $module The module object returned from the DB
|
||||
* @param stdClass $cm The course module instance returned from the DB
|
||||
*/
|
||||
function survey_extend_navigation($navigation, $course, $module, $cm) {
|
||||
/**
|
||||
* This is currently just a stub so that it can be easily expanded upon.
|
||||
* When expanding just remove this comment and the line below and then add
|
||||
* you content.
|
||||
*/
|
||||
$navigation->nodetype = navigation_node::NODETYPE_LEAF;
|
||||
}
|
||||
|
||||
/**
|
||||
* This function extends the settings navigation block for the site.
|
||||
*
|
||||
|
@ -296,26 +296,6 @@ function url_get_coursemodule_info($coursemodule) {
|
||||
return $info;
|
||||
}
|
||||
|
||||
/**
|
||||
* This function extends the global navigation for the site.
|
||||
* It is important to note that you should not rely on PAGE objects within this
|
||||
* body of code as there is no guarantee that during an AJAX request they are
|
||||
* available
|
||||
*
|
||||
* @param navigation_node $navigation The url node within the global navigation
|
||||
* @param stdClass $course The course object returned from the DB
|
||||
* @param stdClass $module The module object returned from the DB
|
||||
* @param stdClass $cm The course module instance returned from the DB
|
||||
*/
|
||||
function url_extend_navigation($navigation, $course, $module, $cm) {
|
||||
/**
|
||||
* This is currently just a stub so that it can be easily expanded upon.
|
||||
* When expanding just remove this comment and the line below and then add
|
||||
* you content.
|
||||
*/
|
||||
$navigation->nodetype = navigation_node::NODETYPE_LEAF;
|
||||
}
|
||||
|
||||
/**
|
||||
* Return a list of page types
|
||||
* @param string $pagetype current page type
|
||||
|
Loading…
x
Reference in New Issue
Block a user