/
home
/
assocoweys
/
sompe
/
plugins
/
system
/
jcepro
/
editor
/
libraries
/
views
/
editor
/
image
/
tmpl
/
Upload File
HOME
<?php /** * @package JCE * @subpackage Editor * * @copyright Copyright (C) 2005 - 2020 Open Source Matters, Inc. All rights reserved. * @copyright Copyright (c) 2009-2024 Ryan Demmer. All rights reserved * @license GNU General Public License version 2 or later; see LICENSE.txt */ defined('JPATH_PLATFORM') or die; use Joomla\CMS\Language\Text; use Joomla\CMS\Session\Session; ?> <form onsubmit="return false;"> <div id="editor" class="offleft uk-position-cover uk-grid uk-grid-small"> <div class="uk-width-7-10 uk-width-xlarge-8-10 uk-height-1-1"> <div class="loading"></div> <div id="editor-image" class="uk-placeholder uk-position-cover"> <!-- Edited image goes here --> </div> </div> <div class="uk-width-3-10 uk-width-xlarge-2-10 uk-height-1-1"> <div id="editor-tools" class="uk-position-cover"> <div id="tabs"> <ul> <li><a href="#transform_tab"><?php echo Text::_('WF_MANAGER_EDITOR_TRANSFORM', 'Transform'); ?></a></li> <li><a href="#effects_tab"><?php echo Text::_('WF_MANAGER_EDITOR_EFFECTS', 'Effects'); ?></a></li> </ul> <div id="transform_tab"> <?php echo $this->loadTemplate('resize'); echo $this->loadTemplate('crop'); echo $this->loadTemplate('rotate'); ?> </div> <div id="effects_tab"> <?php echo $this->loadTemplate('effects'); ?> </div> </div> </div> </div> </div> <div class="actionPanel uk-modal-footer"> <button type="button" class="revert uk-button"><i class="uk-icon-refresh uk-margin-small-right"></i><?php echo Text::_('WF_LABEL_REVERT'); ?></button> <button type="button" class="undo uk-button"><i class="uk-icon-undo uk-margin-small-right"></i><?php echo Text::_('WF_LABEL_UNDO'); ?></button> <button type="button" class="save uk-button uk-button-primary"><i class="uk-icon-check uk-margin-small-right"></i><?php echo Text::_('WF_LABEL_SAVE'); ?></button> </div> <input type="hidden" id="src" value="" /> <input type="hidden" name="<?php echo Session::getFormToken(); ?>" value="1" /> </form> <!-- SVG Filters --> <?php echo $this->loadTemplate('svg'); ?>