Moodle Plugins directory: Simple Navigation Block | Moodle.org

Simple Navigation Block
Blocks ::: block_simple_nav
Maintained by
David Bogner
This block provides a navigation as it is often used on standard websites.
Latest release:
25 sites
1 downloads
7 fans
Current versions available: 3
This block shows a much simpler navigation than the standard Moodle navigation block. It is designed to be used on Moodle sites, that are also used as standard websites and not only as LMS.
Useful links
Contributors
David Bogner (Lead maintainer)
Please login to view contributors details and/or to contact them
First thing first, thank you very much for your work on this great block!
It does almost everything i need except for some minors exception that i would like to implement by myself.
For exemple, id like the first category showed (not the home as i don't display it) to be open by default when the block is first displayed on the page.
This category must stay «collapsible» like all the others.
Could you please point me out what would be,in your opinion, the simplest way to acheve something like this?
Again, thanks a lot!
Best regards,
Jay
I think, you can already achieve this in the settings (activate editing mode, then click on the settings icon of the block). Do not activate the "home" category, then it won't be displayed.
Best regards,
David
Are you planning on updating your nice block to moodle 2.6 any time soon?
Thx a lot!!
Thanks for this lovely plugin. However I couldn't figure out one thing. I've added the simple navigation button and it shows every course under a category to everyone. I couldn't figure out how to list courses to students which are enrolled to that particular course. I want to see all courses as an admin but also want users to ONLY see the courses they are enrolled to.
Any help will be much appreciated.
Cheers,
Can
In your plug-in for the Moodle 2.2 version, I was able to crack the code so that it didn't create hyperlinks to categories, only for the courses.
I have been trying to do the same for the version for Moodle 2.5 and 2.6 but I don't know how to alter this bit in renderer.php:
// is it a category
if ($mytype == 'category') {
$myurl =$CFG->wwwroot.'/course/index.php?categoryid='.$myid;
//$myname = "";
$myclass_ul_open = '';
$myclass_li = 'type_category depth_'.$mydepth.''.$mycollapsed.' contains_branch'.$mystartclass;
$myclass_p = 'tree_item branch'.$myclass;
$myopentag = '
$myclass_a = '';
if ($myvisibility == 0) {
$myclass_a = 'class="dimmed_text"';
}
else {
$myclass_a = '';
}
The only thing I want is to display the categories names, but not hyperlinks as we only use the block to navigate to the courses.
I would really appreciate it any advise.
Thanks for sharing this block with the community
Thank you for maintaining the module for the next versions of Moodle. I am installing it in Moodle 2.9 as we use it so that our admin and academic staff can navigate through the different courses and categories.
We don´t want that students or any authenticated users, except those in the global category of managers, can see the navigation block in the Default My Moodle or Frontpage.
In Moodle 2.6, I was able to remove that permission. However, I cannot see the option in Moodle 2.9,. How do I set up the block permissions so that only users who have certain global roles can see the block?
Thank you very much.
Mari Cruz
do you want to remove the capaility, that users can add the block to their "dashboard" page (former called my moodle)? On the frontpage: You want to add the block, but it should not be seen by certain users?
In order to achieve that, I think that you have to configure global roles accordingly (like manager or "authenticated user").
Kind regards,
David
https://gist.github.com/savolai/dc6766f15322b8109a4204c63a03ecf2/revisions
window.onload = function(e) {
$(document).ready(function() {
$('div.block_simple_nav li.type_category .tree_item').click(function() {
console.log(this);
if ($(this).parent().hasClass("collapsed")) {
$(this).parent().removeClass("collapsed")
} else {
$(this).parent().addClass("collapsed")
}
})
})
}
Kind regards,
DAvid