Note:

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

My profile API: Difference between revisions

From MoodleDocs
m (→‎Introduction: Adding a screenshot of the user profile page.)
m (→‎Introduction: Picture in right spot and referencing correct file)
Line 3: Line 3:


The following picture shows the different elements of the my profile page.
The following picture shows the different elements of the my profile page.
[[File:Example.jpg]]
 
[[File:myprofile.png]]


== Categories ==
== Categories ==

Revision as of 04:49, 6 May 2015

Introduction

The My Profile API is a set of methods that allows user related information to be displayed on the my profile page. The API is similar to the navigation API as the page is made up of a tree of nodes.

The following picture shows the different elements of the my profile page.

myprofile.png

Categories

The category class requires the following properties be filled out when creating a new object:

$name
string The name of category. Used as a key for child nodes to attach to, or for other categories to use in $after.
$title
string The text being displayed. This needs to be a localised string (get_string());
$after
string The name for the category that this category comes after. Optional
$classes
string HTML class attributes for this category. Classes should be separated by a space, e.g. 'class1 class2'. Optional

Adding a category

$category = new core_user\output\myprofile\category('badges', get_string('badges', 'badges'), null); $tree->add_category($category);

Nodes

Nodes contain most of the information for the user profile page. The node class requires the following properties be filled out when creating a new object:

$parentcat
string The parent category. Use the name of the category that this node belongs to.
$name
string The name of this node. Used as a key for other nodes.
$title
string A localised string for the node. Please use get_string().
$after
string By using the name of another node you can position this after that one. Optional
$url
string|moodle_url A url that this node links to. It is recommended that you use a moodle_url. Optional
$content
string Additional content to display under this node. Optional
$icon
string|pix_icon An icon to be displayed next to the node. May be a pix_icon. Optional
$classes
string HTML class attributes for this node. Classes should be separated by a space, e.g. 'class1 class2'. Optional

Adding a node

The following is an example of how to create a node. $url = new moodle_url('/mod/forum/user.php', array('id' => $user->id, 'mode' => 'discussions')); $string = get_string('myprofileowndis', 'mod_forum'); $node = new core_user\output\myprofile\node('miscellaneous', 'forumdiscussions', $string, null, $url); Nodes can be added to categories in two different ways. This first way uses $parentcat to link the node. $tree->add_node($node); If you are creating a category in the same area you can link it the following way where $category has been created further up the page. $category->add_node($node);

Ordering

By default the nodes with content will be displayed before nodes without content. This can be overridden by specifying the node you want to follow in the $after variable. Please, when you are creating your nodes, group similar nodes together. This will ensure that some sort of uniformity is maintained on the page.

Adding information to the User's profile page

To add the category and node information into the my profile page, you need to create a function in the lib.php file. The function needs to start with the component name followed by '_myprofile_navigation()'. You will need to add the following parameters to your function:

$tree
core_user\output\myprofile\tree The myprofile tree to add categories and nodes to.
$user
stdClass The user object that the profile page belongs to.
$iscurrentuser
boolean If the $user object is the current user.
$course
stdClass The course to determine if we are in a course context or system context.

mod/forum/lib.php public function mod_forum_myprofile_navigation(core_user\output\myprofile\tree $tree, $user, $iscurrentuser, $course) {

   ...

}