Note: You are currently viewing documentation for Moodle 3.0. Up-to-date documentation for the latest stable version of Moodle may be available here: Overview of my courses.

Overview of my courses: Difference between revisions

From MoodleDocs
mNo edit summary
m (expanding a bit - can somebody improve the code part please)
Line 1: Line 1:
{{Moodle 1.6}}
{{Moodle 1.6}}


Moodle 1.6 will include My Moodle, a dashboard for Teachers and pupils to customise their own area on the site for easy access to information and their courses from a single area.
Moodle 1.6 and onwards includes My Moodle, a dashboard for Teachers and pupils to customise their own area of the site.
 
 
The My Moodle page allows the user to add and customise blocks that have been specified as available to My Moodle.
 
 
The users courses appear as a list of sections and show recent activity.
 
 
 
Blocks can be configured to appear in My Moodle by using similar code as below:
 
    function applicable_formats() {
        return array('all' => true, 'my' => true);
    }
 




Line 9: Line 24:


[[Category:Developer]]
[[Category:Developer]]
[[Category:Administrator]]

Revision as of 13:14, 16 April 2006

Template:Moodle 1.6

Moodle 1.6 and onwards includes My Moodle, a dashboard for Teachers and pupils to customise their own area of the site.


The My Moodle page allows the user to add and customise blocks that have been specified as available to My Moodle.


The users courses appear as a list of sections and show recent activity.


Blocks can be configured to appear in My Moodle by using similar code as below:

   function applicable_formats() {
       return array('all' => true, 'my' => true);
   }


See also