Merge branch 'MDL-29174_MOODLE_22' of git://github.com/raymanuk/moodle into MOODLE_22_STABLE
This commit is contained in:
@@ -318,26 +318,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
|
||||
|
||||
@@ -382,26 +382,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
|
||||
|
||||
@@ -789,26 +789,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.
|
||||
*
|
||||
|
||||
@@ -411,27 +411,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
|
||||
|
||||
@@ -959,26 +959,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
|
||||
|
||||
Reference in New Issue
Block a user