Proyectos de Subversion Moodle

Rev

| Ultima modificación | Ver Log |

Rev Autor Línea Nro. Línea
1 efrain 1
<?php
2
// This file is part of Moodle - http://moodle.org/
3
//
4
// Moodle is free software: you can redistribute it and/or modify
5
// it under the terms of the GNU General Public License as published by
6
// the Free Software Foundation, either version 3 of the License, or
7
// (at your option) any later version.
8
//
9
// Moodle is distributed in the hope that it will be useful,
10
// but WITHOUT ANY WARRANTY; without even the implied warranty of
11
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12
// GNU General Public License for more details.
13
//
14
// You should have received a copy of the GNU General Public License
15
// along with Moodle.  If not, see <http://www.gnu.org/licenses/>.
16
 
17
/**
18
 * The mod_forum assessable uploaded event.
19
 *
20
 * @package    mod_forum
21
 * @copyright  2013 Frédéric Massart
22
 * @license    http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
23
 */
24
 
25
namespace mod_forum\event;
26
 
27
defined('MOODLE_INTERNAL') || die();
28
 
29
/**
30
 * The mod_forum assessable uploaded event class.
31
 *
32
 * @property-read array $other {
33
 *      Extra information about event.
34
 *
35
 *      - int discussionid: id of discussion.
36
 *      - string triggeredfrom: name of the function from where event was triggered.
37
 * }
38
 *
39
 * @package    mod_forum
40
 * @since      Moodle 2.6
41
 * @copyright  2013 Frédéric Massart
42
 * @license    http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
43
 */
44
class assessable_uploaded extends \core\event\assessable_uploaded {
45
 
46
    /**
47
     * Returns description of what happened.
48
     *
49
     * @return string
50
     */
51
    public function get_description() {
52
        return "The user with id '$this->userid' has posted content in the forum post with id '$this->objectid' " .
53
            "in the discussion '{$this->other['discussionid']}' located in the forum with course module id " .
54
            "'$this->contextinstanceid'.";
55
    }
56
 
57
    /**
58
     * Return localised event name.
59
     *
60
     * @return string
61
     */
62
    public static function get_name() {
63
        return get_string('eventassessableuploaded', 'mod_forum');
64
    }
65
 
66
    /**
67
     * Get URL related to the action.
68
     *
69
     * @return \moodle_url
70
     */
71
    public function get_url() {
72
        return new \moodle_url('/mod/forum/discuss.php', array('d' => $this->other['discussionid'], 'parent' => $this->objectid));
73
    }
74
 
75
    /**
76
     * Init method.
77
     *
78
     * @return void
79
     */
80
    protected function init() {
81
        parent::init();
82
        $this->data['objecttable'] = 'forum_posts';
83
    }
84
 
85
    /**
86
     * Custom validation.
87
     *
88
     * @throws \coding_exception
89
     * @return void
90
     */
91
    protected function validate_data() {
92
        parent::validate_data();
93
 
94
        if (!isset($this->other['discussionid'])) {
95
            throw new \coding_exception('The \'discussionid\' value must be set in other.');
96
        } else if (!isset($this->other['triggeredfrom'])) {
97
            throw new \coding_exception('The \'triggeredfrom\' value must be set in other.');
98
        }
99
    }
100
 
101
    public static function get_objectid_mapping() {
102
        return array('db' => 'forum_posts', 'restore' => 'forum_post');
103
    }
104
 
105
    public static function get_other_mapping() {
106
        $othermapped = array();
107
        $othermapped['discussionid'] = array('db' => 'forum_discussions', 'restore' => 'forum_discussion');
108
 
109
        return $othermapped;
110
    }
111
}