Merge branch 'install_26_STABLE' of https://git.in.moodle.com/amosbot/moodle-install...
[moodle.git] / user / portfolio.php
blob65e7ed19c11592873a0b455ab8588223eff7a1b5
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('admin');
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 $instance->set_user_config($fromform, $USER->id);
82 core_plugin_manager::reset_caches();
83 redirect($baseurl, get_string('instancesaved', 'portfolio'), 3);
85 exit;
86 } else {
87 echo $OUTPUT->heading(get_string('configplugin', 'portfolio'));
88 echo $OUTPUT->box_start();
89 $mform->display();
90 echo $OUTPUT->box_end();
91 $display = false;
94 } else if (!empty($hide)) {
95 $instance = portfolio_instance($hide);
96 $instance->set_user_config(array('visible' => !$instance->get_user_config('visible', $USER->id)), $USER->id);
97 core_plugin_manager::reset_caches();
100 if ($display) {
101 echo $OUTPUT->heading($configstr);
102 echo $OUTPUT->box_start();
104 if (!$instances = portfolio_instances(true, false)) {
105 print_error('noinstances', 'portfolio', $CFG->wwwroot . '/user/view.php');
108 $table = new html_table();
109 $table->head = array($namestr, $pluginstr, '');
110 $table->data = array();
112 foreach ($instances as $i) {
113 $visible = $i->get_user_config('visible', $USER->id);
114 $table->data[] = array($i->get('name'), $i->get('plugin'),
115 ($i->has_user_config()
116 ? '<a href="' . $baseurl . '?config=' . $i->get('id') . '"><img src="' . $OUTPUT->pix_url('t/edit') . '" alt="' . get_string('configure') . '" /></a>' : '') .
117 ' <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 echo html_writer::table($table);
122 echo $OUTPUT->box_end();
124 echo $OUTPUT->footer();