mirror of
https://github.com/moodle/moodle.git
synced 2025-08-06 17:36:38 +02:00
118 lines
No EOL
4.7 KiB
PHP
118 lines
No EOL
4.7 KiB
PHP
<?php
|
|
|
|
class block_navigation_renderer extends plugin_renderer_base {
|
|
|
|
public function navigation_tree(global_navigation $navigation, $expansionlimit) {
|
|
$navigation->add_class('navigation_node');
|
|
$content = $this->navigation_node(array($navigation), array('class'=>'block_tree list'), $expansionlimit);
|
|
if (isset($navigation->id) && !is_numeric($navigation->id) && !empty($content)) {
|
|
$content = $this->output->box($content, 'block_tree_box', $navigation->id);
|
|
}
|
|
return $content;
|
|
}
|
|
|
|
protected function navigation_node($items, $attrs=array(), $expansionlimit=null, $depth=1) {
|
|
|
|
// exit if empty, we don't want an empty ul element
|
|
if (count($items)==0) {
|
|
return '';
|
|
}
|
|
|
|
// array of nested li elements
|
|
$lis = array();
|
|
foreach ($items as $item) {
|
|
if (!$item->display) {
|
|
continue;
|
|
}
|
|
$content = $item->get_content();
|
|
$title = $item->get_title();
|
|
$isbranch = ($item->type !== $expansionlimit && ($item->children->count() > 0 || ($item->nodetype == navigation_node::NODETYPE_BRANCH && $item->children->count()==0 && (isloggedin() || $item->type <= navigation_node::TYPE_CATEGORY))));
|
|
$hasicon = (!$isbranch && $item->icon instanceof renderable);
|
|
|
|
if ($hasicon) {
|
|
$icon = $this->output->render($item->icon);
|
|
$content = $icon.$content; // use CSS for spacing of icons
|
|
}
|
|
if ($item->helpbutton !== null) {
|
|
$content = trim($item->helpbutton).html_writer::tag('span', $content, array('class'=>'clearhelpbutton'));
|
|
}
|
|
|
|
if ($content === '') {
|
|
continue;
|
|
}
|
|
|
|
if ($item->action instanceof action_link) {
|
|
//TODO: to be replaced with something else
|
|
$link = $item->action;
|
|
if ($item->hidden) {
|
|
$link->add_class('dimmed');
|
|
}
|
|
$content = $this->output->render($link);
|
|
} else if ($item->action instanceof moodle_url) {
|
|
$attributes = array();
|
|
if ($title !== '') {
|
|
$attributes['title'] = $title;
|
|
}
|
|
if ($item->hidden) {
|
|
$attributes['class'] = 'dimmed_text';
|
|
}
|
|
$content = html_writer::link($item->action, $content, $attributes);
|
|
|
|
} else if (is_string($item->action) || empty($item->action)) {
|
|
$attributes = array();
|
|
if ($title !== '') {
|
|
$attributes['title'] = $title;
|
|
}
|
|
if ($item->hidden) {
|
|
$attributes['class'] = 'dimmed_text';
|
|
}
|
|
$content = html_writer::tag('span', $content, $attributes);
|
|
}
|
|
|
|
// this applies to the li item which contains all child lists too
|
|
$liclasses = array($item->get_css_type(), 'depth_'.$depth);
|
|
if ($item->has_children() && (!$item->forceopen || $item->collapse)) {
|
|
$liclasses[] = 'collapsed';
|
|
}
|
|
if ($isbranch) {
|
|
$liclasses[] = 'contains_branch';
|
|
} else if ($hasicon) {
|
|
$liclasses[] = 'item_with_icon';
|
|
}
|
|
if ($item->isactive === true) {
|
|
$liclasses[] = 'current_branch';
|
|
}
|
|
$liattr = array('class'=>join(' ',$liclasses));
|
|
// class attribute on the div item which only contains the item content
|
|
$divclasses = array('tree_item');
|
|
if ($isbranch) {
|
|
$divclasses[] = 'branch';
|
|
} else {
|
|
$divclasses[] = 'leaf';
|
|
}
|
|
if ($hasicon) {
|
|
$divclasses[] = 'hasicon';
|
|
}
|
|
if (!empty($item->classes) && count($item->classes)>0) {
|
|
$divclasses[] = join(' ', $item->classes);
|
|
}
|
|
$divattr = array('class'=>join(' ', $divclasses));
|
|
if (!empty($item->id)) {
|
|
$divattr['id'] = $item->id;
|
|
}
|
|
$content = html_writer::tag('p', $content, $divattr) . $this->navigation_node($item->children, array(), $expansionlimit, $depth+1);
|
|
if (!empty($item->preceedwithhr) && $item->preceedwithhr===true) {
|
|
$content = html_writer::empty_tag('hr') . $content;
|
|
}
|
|
$content = html_writer::tag('li', $content, $liattr);
|
|
$lis[] = $content;
|
|
}
|
|
|
|
if (count($lis)) {
|
|
return html_writer::tag('ul', implode("\n", $lis), $attrs);
|
|
} else {
|
|
return '';
|
|
}
|
|
}
|
|
|
|
} |