-
Notifications
You must be signed in to change notification settings - Fork 19
/
Copy pathmedia_editor_modal.tpl.php
71 lines (67 loc) · 3.01 KB
/
media_editor_modal.tpl.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
<?php
/* Copyright (C) 2024 EVARISK <[email protected]>
*
* This program 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.
*
* This program 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 this program. If not, see <https://www.gnu.org/licenses/>.
*/
/**
* \file core/tpl/medias/media_editor_modal.tpl.php
* \ingroup saturne
* \brief Template page for media editor modal
*/
/**
* The following vars must be defined :
* Global : $langs
*/
?>
<!-- File start-->
<div class="modal-upload-image">
<input type="hidden" name="token" value="<?php echo newToken(); ?>">
<div class="wpeo-modal modal-upload-image" id="modal-upload-image">
<?php $mediaResolution = explode('-', getDolGlobalString('SATURNE_MEDIA_RESOLUTION_USED'));
$mediaResolution = explode('x', $mediaResolution[1]); ?>
<input type="hidden" class="fast-upload-options" data-image-resolution-width="<?php echo $mediaResolution[0]; ?>" data-image-resolution-height="<?php echo $mediaResolution[1]; ?>">
<div class="modal-container wpeo-modal-event">
<!-- Modal-Header-->
<div class="modal-header">
<h2 class="modal-title"><?php echo $langs->trans('Image'); ?></h2>
<div class="modal-close"><i class="fas fa-2x fa-times"></i></div>
</div>
<!-- Modal-ADD Image Content-->
<div class="modal-content" id="#modalContent">
<div class="canvas-container">
<canvas id="canvas" style="border: #0b419b solid 2px;"></canvas>
</div>
</div>
<!-- Modal-Footer-->
<div class="modal-footer">
<div class="image-rotate-left wpeo-button button-grey button-square-50">
<span><i class="fas fa-undo-alt"></i></span>
</div>
<div class="image-rotate-right wpeo-button button-grey button-square-50">
<span><i class="fas fa-redo-alt"></i></span>
</div>
<!-- <div class="image-undo wpeo-button button-grey button-square-50">-->
<!-- <span><i class="fas fa-undo-alt"></i></span>-->
<!-- </div>-->
<div class="image-erase wpeo-button button-grey button-square-50">
<span><i class="fas fa-eraser"></i></span>
</div>
<div class="image-validate wpeo-button button-blue button-square-50" value="0">
<span><i class="fas fa-check"></i></span>
</div>
</div>
</div>
</div>
</div>
<?php