-
-
Notifications
You must be signed in to change notification settings - Fork 192
Expand file tree
/
Copy pathrearrange.php
More file actions
178 lines (160 loc) · 6.41 KB
/
rearrange.php
File metadata and controls
178 lines (160 loc) · 6.41 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
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
<?php
// This file is part of the customcert module for 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/>.
/**
* Handles position elements on the PDF via drag and drop.
*
* @package mod_customcert
* @copyright 2013 Mark Nelson <markn@moodle.com>
* @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
*/
use action_link;
use mod_customcert\element;
use mod_customcert\element_helper;
use mod_customcert\page_helper;
use mod_customcert\service\element_factory;
use mod_customcert\service\element_repository;
use mod_customcert\service\page_repository;
use mod_customcert\service\template_repository;
use mod_customcert\template;
require_once('../../config.php');
// The page of the customcert we are editing.
$pid = required_param('pid', PARAM_INT);
$pagerepo = new page_repository();
$page = $pagerepo->get_by_id_or_fail($pid);
$factory = element_factory::build_with_defaults();
$elementrepo = new element_repository($factory);
$elementrecords = $elementrepo->list_by_page($pid);
$elementinstances = [];
foreach ($elementrepo->load_by_page_id($pid) as $instance) {
$elementinstances[$instance->get_id()] = $instance;
}
// Set the template.
$template = template::from_record((new template_repository())->get_by_id_or_fail((int)$page->templateid));
// Perform checks.
if ($cm = $template->get_cm()) {
require_login($cm->course, false, $cm);
} else {
require_login();
}
// Make sure the user has the required capabilities.
$template->require_manage();
if ($template->get_context()->contextlevel == CONTEXT_MODULE) {
$customcert = $DB->get_record('customcert', ['id' => $cm->instance], '*', MUST_EXIST);
$title = $customcert->name;
$heading = format_string($title);
} else {
$title = $SITE->fullname;
$heading = $title;
}
// Set the $PAGE settings.
$pageurl = new moodle_url('/mod/customcert/rearrange.php', ['pid' => $pid]);
page_helper::page_setup($pageurl, $template->get_context(), $title);
$PAGE->activityheader->set_attrs(['hidecompletion' => true,
'description' => '']);
// Add more links to the navigation.
if (!$cm = $template->get_cm()) {
$str = get_string('managetemplates', 'customcert');
$link = new moodle_url('/mod/customcert/manage_templates.php');
$PAGE->navbar->add($str, new action_link($link, $str));
}
$str = get_string('editcustomcert', 'customcert');
$link = new moodle_url('/mod/customcert/edit.php', ['tid' => $template->get_id()]);
$PAGE->navbar->add($str, new action_link($link, $str));
$PAGE->navbar->add(get_string('rearrangeelements', 'customcert'));
// Include the JS we need.
$PAGE->requires->yui_module(
'moodle-mod_customcert-rearrange',
'Y.M.mod_customcert.rearrange.init',
[$template->get_id(),
$page,
$elementrecords]
);
// Create the buttons to save the position of the elements.
$html = html_writer::start_tag('div', ['class' => 'buttons']);
$html .= $OUTPUT->single_button(
new moodle_url('/mod/customcert/edit.php', ['tid' => $template->get_id()]),
get_string('saveandclose', 'customcert'),
'get',
['class' => 'savepositionsbtn']
);
$html .= $OUTPUT->single_button(
new moodle_url('/mod/customcert/rearrange.php', ['pid' => $pid]),
get_string('saveandcontinue', 'customcert'),
'get',
['class' => 'applypositionsbtn']
);
$html .= $OUTPUT->single_button(
new moodle_url('/mod/customcert/edit.php', ['tid' => $template->get_id()]),
get_string('cancel'),
'get',
['class' => 'cancelbtn']
);
$html .= html_writer::end_tag('div');
// Create the div that represents the PDF.
$style = 'height: ' . $page->height . 'mm; line-height: normal; width: ' . $page->width . 'mm;';
$marginstyle = 'height: ' . $page->height . 'mm; width:1px; float:left; position:relative;';
$html .= html_writer::start_tag('div', [
'data-templateid' => $template->get_id(),
'data-contextid' => $template->get_contextid(),
'id' => 'pdf',
'style' => $style]);
if ($page->leftmargin) {
$position = 'left:' . $page->leftmargin . 'mm;';
$html .= "<div id='leftmargin' style='$position $marginstyle'></div>";
}
if ($elementrecords) {
foreach ($elementrecords as $element) {
$instance = $elementinstances[(int)$element->id] ?? null;
if ($instance) {
switch ($element->refpoint) {
case element_helper::CUSTOMCERT_REF_POINT_TOPRIGHT:
$class = 'element refpoint-right';
break;
case element_helper::CUSTOMCERT_REF_POINT_TOPCENTER:
$class = 'element refpoint-center';
break;
case element_helper::CUSTOMCERT_REF_POINT_TOPLEFT:
default:
$class = 'element refpoint-left';
}
switch ($element->alignment) {
case element::ALIGN_CENTER:
$class .= ' align-center';
break;
case element::ALIGN_RIGHT:
$class .= ' align-right';
break;
case element::ALIGN_LEFT:
default:
$class .= ' align-left';
break;
}
$html .= html_writer::tag('div', $instance->render_html(), ['class' => $class,
'data-refpoint' => $element->refpoint, 'id' => 'element-' . $element->id]);
}
}
}
if ($page->rightmargin) {
$position = 'left:' . ($page->width - $page->rightmargin) . 'mm;';
$html .= "<div id='rightmargin' style='$position $marginstyle'></div>";
}
$html .= html_writer::end_tag('div');
echo $OUTPUT->header();
echo $OUTPUT->heading(get_string('rearrangeelementsheading', 'customcert'), 3);
echo $OUTPUT->notification(get_string('exampledatawarning', 'customcert'), \core\output\notification::NOTIFY_WARNING);
echo $html;
$PAGE->requires->js_call_amd('mod_customcert/rearrange-area', 'init', ['#pdf']);
echo $OUTPUT->footer();