-
Notifications
You must be signed in to change notification settings - Fork 0
/
lib.php
96 lines (83 loc) · 2.72 KB
/
lib.php
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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
<?php
// This file is part of Moodle - http://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 <http://www.gnu.org/licenses/>.
/**
* Atto text editor integration version file.
*
* @package atto_edusharing
* @copyright COPYRIGHTINFO
* @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
*/
defined('MOODLE_INTERNAL') || die();
/**
* Initialise this plugin
*/
function atto_edusharing_strings_for_js() {
global $PAGE;
$PAGE->requires->strings_for_js(array(
'pluginname',
'dialogtitle',
'settings',
'insert',
'update',
'cancel',
'title',
'subtitle',
'alwaysShowLatestVersion',
'alignment',
'alignmentLeft',
'alignmentRight',
'alignmentNone',
'dimensions',
'dimensionsWidth',
'dimensionsheight',
'hint1',
'hint2',
'customHint',
'skipHint',
'openRepo',
'directoryHint',
),
'atto_edusharing');
}
/**
* Return the js params required for this module.
* @return array of additional params to pass to javascript init function for this module.
* @throws coding_exception
* @throws dml_exception
*/
function atto_edusharing_params_for_js() {
global $PAGE, $COURSE;
$params = array();
$coursecontext = context_course::instance($COURSE->id);
// Disable edusharing button for content that is viewable on the front-page.
$pagetype = $PAGE->pagetype;
if ($pagetype == 'course-edit' || $pagetype == 'admin-setting-frontpagesettings') {
$params['disabled'] = true;
return $params;
}
if (!has_capability('atto/edusharing:visible', $coursecontext)) {
$params['disabled'] = true;
return $params;
}
$params['disabled'] = false;
$params['repourl'] = trim(get_config('edusharing', 'application_cc_gui_url'), '/');
$params['courseid'] = $COURSE->id;
$params['attoHint'] = get_string('hint1', 'atto_edusharing') . '<br/><br/>' . get_string('hint2', 'atto_edusharing');
if (!empty(get_config('edusharing', 'atto_hint'))){
$params['attoHint'] = get_config('edusharing', 'atto_hint');
}
return $params;
}