e5a083a61aced374071146f29b10e22c0f9d188f
[moodle.git] / user / portfolio.php
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.
14 //
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
20  *
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
24  */
26 require_once(dirname(dirname(__FILE__)) . '/config.php');
28 if (empty($CFG->enableportfolios)) {
29     print_error('disabled', 'portfolio');
30 }
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));
40 if ($hide !== 0) {
41     $url->param('hide', $hide);
42 }
43 if ($config !== 0) {
44     $url->param('config', $config);
45 }
46 if (! $course = $DB->get_record("course", array("id"=>$courseid))) {
47     print_error('invalidcourseid');
48 }
50 $user = $USER;
51 $fullname = fullname($user);
52 $strportfolios = get_string('portfolios', 'portfolio');
53 $configstr = get_string('manageyourportfolios', 'portfolio');
54 $namestr = get_string('name');
55 $pluginstr = get_string('plugin', 'portfolio');
56 $baseurl = $CFG->wwwroot . '/user/portfolio.php';
58 $display = true; // set this to false in the conditions to stop processing
60 require_login($course, false);
62 $PAGE->set_url($url);
63 $PAGE->set_context(get_context_instance(CONTEXT_USER, $user->id));
64 $PAGE->set_title("$course->fullname: $fullname: $strportfolios");
65 $PAGE->set_heading($course->fullname);
66 $PAGE->set_pagelayout('standard');
68 echo $OUTPUT->header();
69 $showroles = 1;
71 if (!empty($config)) {
72     $instance = portfolio_instance($config);
73     $mform = new portfolio_user_form('', array('instance' => $instance, 'userid' => $user->id));
74     if ($mform->is_cancelled()){
75         redirect($baseurl);
76         exit;
77     } else if ($fromform = $mform->get_data()){
78         if (!confirm_sesskey()) {
79             print_error('confirmsesskeybad', '', $baseurl);
80         }
81         //this branch is where you process validated data.
82         $success = $instance->set_user_config($fromform, $USER->id);
83             //$success = $success && $instance->save();
84         if ($success) {
85             redirect($baseurl, get_string('instancesaved', 'portfolio'), 3);
86         } else {
87             print_error('instancenotsaved', 'portfolio', $baseurl);
88         }
89         exit;
90     } else {
91         echo $OUTPUT->heading(get_string('configplugin', 'portfolio'));
92         echo $OUTPUT->box_start();
93         $mform->display();
94         echo $OUTPUT->box_end();
95         $display = false;
96     }
98 } else if (!empty($hide)) {
99     $instance = portfolio_instance($hide);
100     $instance->set_user_config(array('visible' => !$instance->get_user_config('visible', $USER->id)), $USER->id);
103 if ($display) {
104     echo $OUTPUT->heading($configstr);
105     echo $OUTPUT->box_start();
107     if (!$instances = portfolio_instances(true, false)) {
108         print_error('noinstances', 'portfolio', $CFG->wwwroot . '/user/view.php');
109     }
111     $table = new html_table();
112     $table->head = array($namestr, $pluginstr, '');
113     $table->data = array();
115     foreach ($instances as $i) {
116         $visible = $i->get_user_config('visible', $USER->id);
117         $table->data[] = array($i->get('name'), $i->get('plugin'),
118             ($i->has_user_config()
119                 ?  '<a href="' . $baseurl . '?config=' . $i->get('id') . '"><img src="' . $OUTPUT->pix_url('t/edit') . '" alt="' . get_string('configure') . '" /></a>' : '') .
120                    ' <a href="' . $baseurl . '?hide=' . $i->get('id') . '"><img src="' . $OUTPUT->pix_url('t/' . (($visible) ? 'hide' : 'show')) . '" alt="' . get_string($visible ? 'hide' : 'show') . '" /></a><br />'
121         );
122     }
124     echo html_writer::table($table);
125     echo $OUTPUT->box_end();
127 echo $OUTPUT->footer();