Note:

If you want to create a new page for developers, you should create it on the Moodle Developer Resource site.

My Moodle 2.0: Difference between revisions

From MoodleDocs
Line 44: Line 44:
These are the actual pages that can contain the functions and blocks in the My Moodle interface. In the referred drawings, each of these would be a tab.
These are the actual pages that can contain the functions and blocks in the My Moodle interface. In the referred drawings, each of these would be a tab.


Each of these is a canvas that can be painted with blocks. The blocks would need to know which page they belonged to.
Each of these is a canvas that can be painted with blocks. The blocks would need to know which page they belonged to. By using blocks, issues such as the way a page looks, or the way information is ordered on a page, becomes an issue associated with the block and not with My Moodle itself.
 
Initially, My Moodle could come with specific pages:
* home page / dashboard - A completely user configurable page where the informational blocks can be added and moved. User could have items such as news-feeds, calendars, etc.
* profile - The same function that currently exists on the user profile page. If allowed on the site, provide options for the user to assign what information can be visible by what roles.
* blog - Access to the user's blog (like the current tab on the user profile page).
* course list - A better version of the current My Moodle page.
* report - Access to various reports and logs on your activities.
 
Subpages will require contexts, so that roles can be given different capabilities (CONTEXT_MYPAGE ?). (These could be extended contexts as described here: MDL-20045). Capabilities would allow some pages to be re-configured by certain roles and not others.


===Blocks===
===Blocks===

Revision as of 18:21, 9 October 2009

Moodle 2.0


Goals

To make the "My Moodle" interface a more usable space that provides each user with their own personal experience. The page should be a user's personal portal page in Moodle.

Portions of the My Moodle interface should be able to be made customizable by the individual users. Other portions should be able to be locked to certain roles.

It's also the place where you change your preferences and settings.

It should utilize current Moodle constructs such as blocks, themes and pages.

The user's profile page should be able to be configured by the user to allow choice of what can be displayed. This also should be manageable at the admin level.

Scope

  • Subpages (Canvases):
    • Tabs in the diagram (navigation style themeable?).
    • Should come with pre-defined pages for:
      • profile,
      • course list,
      • blog ,
      • reports,
      • home page / dashboard.
    • Page can define whether blocks can be moved.
    • Possibility for plug-in pages.
    • Possibility for user added pages / canvases.
    • Access to pages should be available – requires context.
    • Capabilities should be available – that is, standard pages may or may not be configurable to given roles.
  • Blocks:
    • Like normal blocks.
    • Whether or not they can be visible on My Moodle should be configurable.
    • Some should be able to be added, moved and configured by any user.
    • Need to able to be displayed in middle portion.
    • Possible to define valid subpages they can be on

Solutions

Review drawings in MDL-19124 for ideas of how this could look.

Subpages

(Consider calling these "canvases" instead of subpages)

These are the actual pages that can contain the functions and blocks in the My Moodle interface. In the referred drawings, each of these would be a tab.

Each of these is a canvas that can be painted with blocks. The blocks would need to know which page they belonged to. By using blocks, issues such as the way a page looks, or the way information is ordered on a page, becomes an issue associated with the block and not with My Moodle itself.

Initially, My Moodle could come with specific pages:

  • home page / dashboard - A completely user configurable page where the informational blocks can be added and moved. User could have items such as news-feeds, calendars, etc.
  • profile - The same function that currently exists on the user profile page. If allowed on the site, provide options for the user to assign what information can be visible by what roles.
  • blog - Access to the user's blog (like the current tab on the user profile page).
  • course list - A better version of the current My Moodle page.
  • report - Access to various reports and logs on your activities.

Subpages will require contexts, so that roles can be given different capabilities (CONTEXT_MYPAGE ?). (These could be extended contexts as described here: MDL-20045). Capabilities would allow some pages to be re-configured by certain roles and not others.

Blocks

Any of the content on a My Moodle page should be able to be handled with blocks. The positioning of them is what is important.

My Moodle will add a 'my-content' region to display the centre block area. There are likely more areas that will need to be added (for example, my-pagenav, my-announce).

See also