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
namespace mod_bigbluebuttonbn\event;
18
 
19
/**
20
 * The mod_bigbluebuttonbn class for event name definition.
21
 *
22
 * @package   mod_bigbluebuttonbn
23
 * @copyright 2010 onwards, Blindside Networks Inc
24
 * @license   http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
25
 */
26
class events {
27
 
28
    /**
29
     * Event name matcher.
30
     *
31
     * @var $events
32
     */
33
    public static $events = [
34
        'create' => 'activity_created',
35
        'view' => 'course_module_viewed',
36
        'update' => 'activity_updated',
37
        'delete' => 'activity_deleted',
38
        'meeting_create' => 'meeting_created',
39
        'meeting_end' => 'meeting_ended',
40
        'meeting_join' => 'meeting_joined',
41
        'meeting_left' => 'meeting_left',
42
        'recording_delete' => 'recording_deleted',
43
        'recording_import' => 'recording_imported',
44
        'recording_protect' => 'recording_protected',
45
        'recording_publish' => 'recording_published',
46
        'recording_unprotect' => 'recording_unprotected',
47
        'recording_unpublish' => 'recording_unpublished',
48
        'recording_edit' => 'recording_edited',
49
        'recording_play' => 'recording_viewed',
50
        'live_session' => 'live_session'
51
    ];
52
}