-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathlib.php
More file actions
56 lines (51 loc) · 2.14 KB
/
Copy pathlib.php
File metadata and controls
56 lines (51 loc) · 2.14 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
<?php
// This file is part of Moodle - https://moodle.org/
//
// Moodle is free software: you can redistribute it and/or modify
// it under the terms of the GNU General Public License as published by
// the Free Software Foundation, either version 3 of the License, or
// (at your option) any later version.
//
// Moodle is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// GNU General Public License for more details.
//
// You should have received a copy of the GNU General Public License
// along with Moodle. If not, see <https://www.gnu.org/licenses/>.
use local_clickview\Utils;
/**
* Plugin for embed ClickView video in TinyMCE (Moodle-specific modified version).
*
* @package tinymce_clickview
* @copyright 2021 ClickView Pty. Limited <info@clickview.com.au>
* @license https://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
*/
class tinymce_clickview extends editor_tinymce_plugin {
/**
* Used to update the params for initialization.
*
* @param array $params the params to be updated
* @param context $context
* @param array|null $options optional params
* @throws dml_exception
* @throws moodle_exception
*/
protected function update_init_params(array &$params, context $context,
array $options = null) {
global $CFG;
$params['lang'] = get_html_lang();
$params['iframe'] = Utils::get_iframe_html();
$params['eventsapi'] = Utils::get_eventsapi_url()->out();
$params['moodlecss'] = $CFG->wwwroot . '/theme/boost/style/moodle.css';
if ($row = $this->find_button($params, 'managefiles')) {
// Add button after 'managefiles'.
$this->add_button_after($params, $row, 'clickview', 'managefiles');
} else {
// Add this button in the end of the first row (by default 'managefiles' button should be in the first row).
$this->add_button_after($params, 1, 'clickview');
}
// Add JS file, which uses default name.
$this->add_js_plugin($params);
}
}