Overview of my courses: Difference between revisions

From MoodleDocs
m (expanding a bit - can somebody improve the code part please)
(enabling my moodle)
Line 1: Line 1:
{{Moodle 1.6}}
{{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.
Moodle 1.6 and onwards includes '''My Moodle''', a dashboard for teachers and pupils to customise their Moodle homepage.


The My Moodle page allows the user to add and customise certain blocks, with the user's courses appearing as a list of sections and show recent activity.


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


* Set ''mymoodleredirect'' to 'Yes' in the miscellaneous section of Administration >> Configuration >> [[Variables]]


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


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


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


==See also==
==See also==
Line 23: Line 21:
* Using Moodle [http://moodle.org/mod/forum/discuss.php?d=39161 Version 1.6 and My Moodle Page] forum discussion
* Using Moodle [http://moodle.org/mod/forum/discuss.php?d=39161 Version 1.6 and My Moodle Page] forum discussion


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

Revision as of 10:01, 26 April 2006

Template:Moodle 1.6

Moodle 1.6 and onwards includes My Moodle, a dashboard for teachers and pupils to customise their Moodle homepage.

The My Moodle page allows the user to add and customise certain blocks, with the user's courses appearing as a list of sections and show recent activity.

Enabling My Moodle

  • Set mymoodleredirect to 'Yes' in the miscellaneous section of Administration >> Configuration >> Variables

Block availability

Blocks may be configured to be available in My Moodle by using similar code as below:

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

See also