Merge branch 'MDL-27143_22' of git://github.com/timhunt/moodle into MOODLE_22_STABLE
[moodle.git] / user / portfolio.php
blobc91e04e628d2529b4c72eaf14444ff3f8203c342
1 <?php
3 // This file is part of Moodle - http://moodle.org/
4 //
5 // Moodle is free software: you can redistribute it and/or modify
6 // it under the terms of the GNU General Public License as published by
7 // the Free Software Foundation, either version 3 of the License, or
8 // (at your option) any later version.
9 //
10 // Moodle is distributed in the hope that it will be useful,
11 // but WITHOUT ANY WARRANTY; without even the implied warranty of
12 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 // GNU General Public License for more details.
15 // You should have received a copy of the GNU General Public License
16 // along with Moodle. If not, see <http://www.gnu.org/licenses/>.
18 /**
19 * This file is part of the User section Moodle
21 * @copyright 1999 Martin Dougiamas http://dougiamas.com
22 * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
23 * @package user
26 require_once(dirname(dirname(__FILE__)) . '/config.php');
28 if (empty($CFG->enableportfolios)) {
29 print_error('disabled', 'portfolio');
32 require_once($CFG->libdir . '/portfoliolib.php');
33 require_once($CFG->libdir . '/portfolio/forms.php');
35 $config = optional_param('config', 0, PARAM_INT);
36 $hide = optional_param('hide', 0, PARAM_INT);
37 $courseid = optional_param('courseid', SITEID, PARAM_INT);
39 $url = new moodle_url('/user/portfolio.php', array('courseid'=>$courseid));
41 if ($config !== 0) {
42 $url->param('config', $config);
44 if (! $course = $DB->get_record("course", array("id"=>$courseid))) {
45 print_error('invalidcourseid');
48 $user = $USER;
49 $fullname = fullname($user);
50 $strportfolios = get_string('portfolios', 'portfolio');
51 $configstr = get_string('manageyourportfolios', 'portfolio');
52 $namestr = get_string('name');
53 $pluginstr = get_string('plugin', 'portfolio');
54 $baseurl = $CFG->wwwroot . '/user/portfolio.php';
56 $display = true; // set this to false in the conditions to stop processing
58 require_login($course, false);
60 $PAGE->set_url($url);
61 $PAGE->set_context(get_context_instance(CONTEXT_USER, $user->id));
62 $PAGE->set_title("$course->fullname: $fullname: $strportfolios");
63 $PAGE->set_heading($course->fullname);
64 $PAGE->set_pagelayout('standard');
66 echo $OUTPUT->header();
67 $showroles = 1;
69 if (!empty($config)) {
70 navigation_node::override_active_url(new moodle_url('/user/portfolio.php', array('courseid'=>$courseid)));
71 $instance = portfolio_instance($config);
72 $mform = new portfolio_user_form('', array('instance' => $instance, 'userid' => $user->id));
73 if ($mform->is_cancelled()){
74 redirect($baseurl);
75 exit;
76 } else if ($fromform = $mform->get_data()){
77 if (!confirm_sesskey()) {
78 print_error('confirmsesskeybad', '', $baseurl);
80 //this branch is where you process validated data.
81 $success = $instance->set_user_config($fromform, $USER->id);
82 //$success = $success && $instance->save();
83 if ($success) {
84 redirect($baseurl, get_string('instancesaved', 'portfolio'), 3);
85 } else {
86 print_error('instancenotsaved', 'portfolio', $baseurl);
88 exit;
89 } else {
90 echo $OUTPUT->heading(get_string('configplugin', 'portfolio'));
91 echo $OUTPUT->box_start();
92 $mform->display();
93 echo $OUTPUT->box_end();
94 $display = false;
97 } else if (!empty($hide)) {
98 $instance = portfolio_instance($hide);
99 $instance->set_user_config(array('visible' => !$instance->get_user_config('visible', $USER->id)), $USER->id);
102 if ($display) {
103 echo $OUTPUT->heading($configstr);
104 echo $OUTPUT->box_start();
106 if (!$instances = portfolio_instances(true, false)) {
107 print_error('noinstances', 'portfolio', $CFG->wwwroot . '/user/view.php');
110 $table = new html_table();
111 $table->head = array($namestr, $pluginstr, '');
112 $table->data = array();
114 foreach ($instances as $i) {
115 $visible = $i->get_user_config('visible', $USER->id);
116 $table->data[] = array($i->get('name'), $i->get('plugin'),
117 ($i->has_user_config()
118 ? '<a href="' . $baseurl . '?config=' . $i->get('id') . '"><img src="' . $OUTPUT->pix_url('t/edit') . '" alt="' . get_string('configure') . '" /></a>' : '') .
119 ' <a href="' . $baseurl . '?hide=' . $i->get('id') . '"><img src="' . $OUTPUT->pix_url('t/' . (($visible) ? 'hide' : 'show')) . '" alt="' . get_string($visible ? 'hide' : 'show') . '" /></a><br />'
123 echo html_writer::table($table);
124 echo $OUTPUT->box_end();
126 echo $OUTPUT->footer();