* output the blocks anyway, so we are not doing wasted effort.)
*
* @param string $region a block region that exists on this page.
- * @param object $output a core_renderer. normally the global $OUTPUT.
+ * @param core_renderer $output a core_renderer. normally the global $OUTPUT.
* @return boolean Whether there is anything in this region.
*/
public function region_has_content($region, $output) {
$functioncalled = true;
$courseformat = course_get_format($this->page->course);
if (($obj = $courseformat->course_content_header()) !== null) {
- return $courseformat->get_renderer($this->page)->render($obj);
+ return html_writer::div($courseformat->get_renderer($this->page)->render($obj), 'course-content-header');
}
return '';
}
require_once($CFG->dirroot.'/course/lib.php');
$courseformat = course_get_format($this->page->course);
if (($obj = $courseformat->course_content_footer()) !== null) {
- return $courseformat->get_renderer($this->page)->render($obj);
+ return html_writer::div($courseformat->get_renderer($this->page)->render($obj), 'course-content-footer');
}
return '';
}
*/
public function navbar() {
$items = $this->page->navbar->get_items();
+ $itemcount = count($items);
+ if ($itemcount === 0) {
+ return '';
+ }
$htmlblocks = array();
// Iterate the navarray and display each node
- $itemcount = count($items);
$separator = get_separator();
for ($i=0;$i < $itemcount;$i++) {
$item = $items[$i];
$jscode = "(function(){{$jscode}})";
$this->page->requires->yui_module('node-menunav', $jscode);
// Build the root nodes as required by YUI
- $content = html_writer::start_tag('div', array('id'=>'custom_menu_'.$menucount, 'class'=>'yui3-menu yui3-menu-horizontal javascript-disabled'));
+ $content = html_writer::start_tag('div', array('id'=>'custom_menu_'.$menucount, 'class'=>'yui3-menu yui3-menu-horizontal javascript-disabled custom-menu'));
$content .= html_writer::start_tag('div', array('class'=>'yui3-menu-content'));
$content .= html_writer::start_tag('ul');
// Render each child
* the forum or quiz table) that this page belongs to. Will be null
* if this page is not within a module.
* @property-read array $alternativeversions Mime type => object with ->url and ->title.
- * @property-read blocks_manager $blocks The blocks manager object for this page.
+ * @property-read block_manager $blocks The blocks manager object for this page.
* @property-read array $blockmanipulations
* @property-read string $bodyclasses A string to use within the class attribute on the body tag.
* @property-read string $bodyid A string to use as the id of the body tag.
* @return string The link to user documentation for this current page
*/
function page_doc_link($text='') {
- global $CFG, $PAGE, $OUTPUT;
+ global $OUTPUT, $PAGE;
+ $path = page_get_doc_link_path($PAGE);
+ if (!$path) {
+ return '';
+ }
+ return $OUTPUT->doc_link($path, $text);
+}
+
+/**
+ * Returns the path to use when constructing a link to the docs.
+ *
+ * @since 2.5.1 2.6
+ * @global stdClass $CFG
+ * @param moodle_page $page
+ * @return string
+ */
+function page_get_doc_link_path(moodle_page $page) {
+ global $CFG;
if (empty($CFG->docroot) || during_initial_install()) {
return '';
}
- if (!has_capability('moodle/site:doclinks', $PAGE->context)) {
+ if (!has_capability('moodle/site:doclinks', $page->context)) {
return '';
}
- $path = $PAGE->docspath;
+ $path = $page->docspath;
if (!$path) {
return '';
}
- return $OUTPUT->doc_link($path, $text);
+ return $path;
}