MDL-40918 mod_lti: replaced 'view' and 'view all' add_to_log calls with events
[moodle.git] / user / portfolio.php
blob6d09c75e600c492cfe8ec5ae5ec4a48bf227e524
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(context_user::instance($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 core_plugin_manager::reset_caches();
85 redirect($baseurl, get_string('instancesaved', 'portfolio'), 3);
86 } else {
87 print_error('instancenotsaved', 'portfolio', $baseurl);
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;
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);
101 core_plugin_manager::reset_caches();
104 if ($display) {
105 echo $OUTPUT->heading($configstr);
106 echo $OUTPUT->box_start();
108 if (!$instances = portfolio_instances(true, false)) {
109 print_error('noinstances', 'portfolio', $CFG->wwwroot . '/user/view.php');
112 $table = new html_table();
113 $table->head = array($namestr, $pluginstr, '');
114 $table->data = array();
116 foreach ($instances as $i) {
117 $visible = $i->get_user_config('visible', $USER->id);
118 $table->data[] = array($i->get('name'), $i->get('plugin'),
119 ($i->has_user_config()
120 ? '<a href="' . $baseurl . '?config=' . $i->get('id') . '"><img src="' . $OUTPUT->pix_url('t/edit') . '" alt="' . get_string('configure') . '" /></a>' : '') .
121 ' <a href="' . $baseurl . '?hide=' . $i->get('id') . '"><img src="' . $OUTPUT->pix_url('t/' . (($visible) ? 'hide' : 'show')) . '" alt="' . get_string($visible ? 'hide' : 'show') . '" /></a><br />'
125 echo html_writer::table($table);
126 echo $OUTPUT->box_end();
128 echo $OUTPUT->footer();