forked from itamart/moodle-mod_dataform
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcss.php
More file actions
152 lines (119 loc) · 5.74 KB
/
css.php
File metadata and controls
152 lines (119 loc) · 5.74 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
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
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
<?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/>.
/**
* @package mod
* @subpackage dataform
* @copyright 2011 Itamar Tzadok
* @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
*
* The Dataform has been developed as an enhanced counterpart
* of Moodle's Database activity module (1.9.11+ (20110323)).
* To the extent that Dataform code corresponds to Database code,
* certain copyrights on the Database module may obtain.
*/
require_once('../../config.php');
$urlparams = new object;
$urlparams->d = optional_param('d', 0, PARAM_INT); // dataform id
$urlparams->id = optional_param('id', 0, PARAM_INT); // course module id
$urlparams->cssedit = optional_param('cssedit', 0, PARAM_BOOL); // edit mode
if ($urlparams->cssedit) {
require_once('mod_class.php');
require_once $CFG->libdir.'/formslib.php';
class mod_dataform_css_form extends moodleform {
function definition() {
global $CFG, $COURSE;
$mform = &$this->_form;
// buttons
//-------------------------------------------------------------------------------
$this->add_action_buttons(true);
// css
//-------------------------------------------------------------------------------
$mform->addElement('header', 'generalhdr', get_string('headercss', 'dataform'));
// includes
$attributes = array('wrap' => 'virtual', 'rows' => 5, 'cols' => 60);
$mform->addElement('textarea', 'cssincludes', get_string('cssincludes', 'dataform'), $attributes);
// code
$attributes = array('wrap' => 'virtual', 'rows' => 15, 'cols' => 60);
$mform->addElement('textarea', 'css', get_string('csscode', 'dataform'), $attributes);
// uploads
$options = array(
'subdirs' => 0,
'maxbytes' => $COURSE->maxbytes,
'maxfiles' => 10,
'accepted_types' => array('*.css')
);
$mform->addElement('filemanager', 'cssupload', get_string('cssupload', 'dataform'), null, $options);
// buttons
//-------------------------------------------------------------------------------
$this->add_action_buttons(true);
}
}
// Set a dataform object
$df = new dataform($urlparams->d, $urlparams->id);
require_capability('mod/dataform:managetemplates', $df->context);
$df->set_page('css', array('urlparams' => $urlparams));
// activate navigation node
navigation_node::override_active_url(new moodle_url('/mod/dataform/css.php', array('id' => $df->cm->id, 'cssedit' => 1)));
$mform = new mod_dataform_css_form(new moodle_url('/mod/dataform/css.php', array('d' => $df->id(), 'cssedit' => 1)));
if ($mform->is_cancelled()) {
} else if ($data = $mform->get_data()){
// update the dataform
$rec = new object();
$rec->css = $data->css;
$rec->cssincludes = $data->cssincludes;
$df->update($rec, get_string('csssaved', 'dataform'));
// add uploaded files
$usercontext = context_user::instance($USER->id);
$fs = get_file_storage();
if ($files = $fs->get_area_files($usercontext->id, 'user', 'draft', $data->cssupload, 'sortorder', false)) {
$filerec = new object;
$filerec->contextid = $df->context->id;
$filerec->component = 'mod_dataform';
$filerec->filearea = 'css';
$filerec->filepath = '/';
foreach ($files as $file) {
$filerec->filename = $file->get_filename();
$fs->create_file_from_storedfile($filerec, $file);
}
$fs->delete_area_files($usercontext->id, 'user', 'draft', $data->cssupload);
}
add_to_log($df->course->id, 'dataform', 'css saved', 'css.php?id='. $df->cm->id. '&d='. $df->id(), $df->id(), $df->cm->id);
}
$df->print_header(array('tab' => 'css', 'urlparams' => $urlparams));
$options = array(
'subdirs' => 0,
'maxbytes' => $COURSE->maxbytes,
'maxfiles' => 10,
);
$draftitemid = file_get_submitted_draft_itemid('cssupload');
file_prepare_draft_area($draftitemid, $df->context->id, 'mod_dataform', 'css', 0, $options);
$df->data->cssupload = $draftitemid;
$mform->set_data($df->data);
$mform->display();
$df->print_footer();
} else {
defined('NO_MOODLE_COOKIES') or define('NO_MOODLE_COOKIES', true); // session not used here
$lifetime = 600; // Seconds to cache this stylesheet
$PAGE->set_url('/mod/dataform/css.php', array('d'=>$urlparams->d));
if ($cssdata = $DB->get_field('dataform', 'css', array('id'=>$urlparams->d))) {
header('Last-Modified: ' . gmdate('D, d M Y H:i:s', time()) . ' GMT');
header('Expires: ' . gmdate("D, d M Y H:i:s", time() + $lifetime) . ' GMT');
header('Cache-control: max_age = '. $lifetime);
header('Pragma: ');
header('Content-type: text/css; charset=utf-8'); // Correct MIME type
echo $cssdata;
}
}