478 lines
		
	
	
		
			26 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			478 lines
		
	
	
		
			26 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
| <?php
 | |
| 
 | |
| /**
 | |
|  * @package     Joomla.Administrator
 | |
|  * @subpackage  com_templates
 | |
|  *
 | |
|  * @copyright   (C) 2008 Open Source Matters, Inc. <https://www.joomla.org>
 | |
|  * @license     GNU General Public License version 2 or later; see LICENSE.txt
 | |
|  */
 | |
| 
 | |
| defined('_JEXEC') or die;
 | |
| 
 | |
| use Jfcherng\Diff\DiffHelper;
 | |
| use Joomla\CMS\Component\ComponentHelper;
 | |
| use Joomla\CMS\Factory;
 | |
| use Joomla\CMS\HTML\HTMLHelper;
 | |
| use Joomla\CMS\Language\Text;
 | |
| use Joomla\CMS\Layout\LayoutHelper;
 | |
| use Joomla\CMS\Router\Route;
 | |
| use Joomla\CMS\Session\Session;
 | |
| 
 | |
| /** @var \Joomla\Component\Templates\Administrator\View\Template\HtmlView $this */
 | |
| 
 | |
| HTMLHelper::_('behavior.multiselect', 'updateForm');
 | |
| HTMLHelper::_('bootstrap.modal');
 | |
| 
 | |
| /** @var Joomla\CMS\WebAsset\WebAssetManager $wa */
 | |
| $wa    = $this->getDocument()->getWebAssetManager();
 | |
| $input = Factory::getApplication()->getInput();
 | |
| 
 | |
| // Enable assets
 | |
| $wa->useScript('form.validate')
 | |
|     ->useScript('keepalive')
 | |
|     ->useScript('com_templates.admin-template-toggle-switch')
 | |
|     ->useScript('com_templates.admin-templates')
 | |
|     ->useStyle('com_templates.admin-templates');
 | |
| 
 | |
| // No access if not global SuperUser
 | |
| if (!$this->getCurrentUser()->authorise('core.admin')) {
 | |
|     Factory::getApplication()->enqueueMessage(Text::_('JERROR_ALERTNOAUTHOR'), 'danger');
 | |
| }
 | |
| 
 | |
| if ($this->type == 'image') {
 | |
|     $wa->usePreset('cropperjs');
 | |
| }
 | |
| 
 | |
| if ($this->type == 'font') {
 | |
|     $wa->addInlineStyle("
 | |
| 		@font-face {
 | |
| 			font-family: previewFont;
 | |
| 			src: url('" . $this->font['address'] . "')
 | |
| 		}
 | |
| 		.font-preview {
 | |
| 			font-family: previewFont !important;
 | |
| 		}
 | |
| 	");
 | |
| }
 | |
| ?>
 | |
| <div class="main-card">
 | |
|     <?php echo HTMLHelper::_('uitab.startTabSet', 'myTab', ['active' => 'editor', 'recall' => true, 'breakpoint' => 768]); ?>
 | |
|     <?php echo HTMLHelper::_('uitab.addTab', 'myTab', 'editor', Text::_('COM_TEMPLATES_TAB_EDITOR')); ?>
 | |
|     <div class="row mt-2">
 | |
|         <div class="col-md-8" id="conditional-section">
 | |
|             <?php if ($this->type != 'home') : ?>
 | |
|                 <p class="lead"><?php echo Text::sprintf('COM_TEMPLATES_TEMPLATE_FILENAME', '‎' . ($input->get('isMedia', 0) ? '/media/templates/' . ((int) $this->template->client_id === 0 ? 'site' : 'administrator') . '/' . $this->template->element . str_replace('//', '/', base64_decode($this->file)) : '/' . ((int) $this->template->client_id === 0 ? '' : 'administrator/') . 'templates/' . $this->template->element . str_replace('//', '/', base64_decode($this->file))), $this->template->element); ?></p>
 | |
|                 <p class="lead path hidden"><?php echo $this->source->filename; ?></p>
 | |
|             <?php endif; ?>
 | |
|         </div>
 | |
|         <?php if ($this->type == 'file' && !empty($this->source->coreFile)) : ?>
 | |
|             <div class="col-md-4 text-end">
 | |
|                 <div id="toggle-buttons">
 | |
|                     <?php echo $this->form->renderField('show_core'); ?>
 | |
|                     <?php echo $this->form->renderField('show_diff'); ?>
 | |
|                 </div>
 | |
|             </div>
 | |
|         <?php endif; ?>
 | |
|     </div>
 | |
|     <div class="row mt-2">
 | |
|         <div id="treeholder" class="col-md-3 tree-holder">
 | |
|             <div class="mt-2 mb-2">
 | |
|                 <ul class="directory-tree treeselect">
 | |
|                     <li class="folder-select">
 | |
|                         <a class="folder-url" data-id="" href="">
 | |
|                             <span class="icon-folder icon-fw" aria-hidden="true"></span>
 | |
|                             <?php echo ((int) $this->template->client_id === 0 ? '/' : '/administrator/') . 'templates/' . $this->template->element; ?>
 | |
|                         </a>
 | |
|                         <?php echo $this->loadTemplate('tree'); ?>
 | |
|                     </li>
 | |
|                 </ul>
 | |
|                 <?php if (count($this->mediaFiles)) : ?>
 | |
|                     <ul class="directory-tree treeselect">
 | |
|                         <li class="folder-select">
 | |
|                             <a class="folder-url" data-id="" href="">
 | |
|                                 <span class="icon-folder icon-fw" aria-hidden="true"></span>
 | |
|                                 <?php echo '/media/templates/' . ((int) $this->template->client_id === 0 ? 'site/' : 'administrator/') . $this->template->element; ?>
 | |
|                             </a>
 | |
|                             <?php echo $this->loadTemplate('tree_media'); ?>
 | |
|                         </li>
 | |
|                     </ul>
 | |
|                 <?php endif; ?>
 | |
|             </div>
 | |
|         </div>
 | |
|         <div class="col-md-9">
 | |
|             <fieldset class="options-form">
 | |
|                 <?php if ($this->type == 'home') : ?>
 | |
|                     <legend><?php echo Text::_('COM_TEMPLATES_HOME_HEADING'); ?></legend>
 | |
|                     <form action="<?php echo Route::_('index.php?option=com_templates&view=template&id=' . $input->getInt('id') . '&file=' . $this->file . '&isMedia=' . $input->get('isMedia', 0)); ?>" method="post" name="adminForm" id="adminForm">
 | |
|                         <input type="hidden" name="task" value="">
 | |
|                         <?php echo HTMLHelper::_('form.token'); ?>
 | |
|                         <p><?php echo Text::_('COM_TEMPLATES_HOME_TEXT'); ?></p>
 | |
|                         <p>
 | |
|                             <a href="https://docs.joomla.org/Special:MyLanguage/J4.x:Template_Overrides" target="_blank" rel="noopener" class="btn btn-primary btn-lg">
 | |
|                                 <?php echo Text::_('COM_TEMPLATES_HOME_BUTTON'); ?>
 | |
|                             </a>
 | |
|                         </p>
 | |
|                     </form>
 | |
|                 <?php elseif ($this->type == 'file') : ?>
 | |
|                     <div class="row">
 | |
|                         <div class="col-md-12" id="override-pane">
 | |
|                             <?php $overrideCheck = explode(DIRECTORY_SEPARATOR, $this->source->filename); ?>
 | |
|                             <?php if (!empty($this->source->coreFile)) : ?>
 | |
|                                 <h2><?php echo Text::_('COM_TEMPLATES_FILE_OVERRIDE_PANE'); ?></h2>
 | |
|                             <?php endif; ?>
 | |
|                             <form action="<?php echo Route::_('index.php?option=com_templates&view=template&id=' . $input->getInt('id') . '&file=' . $this->file . '&isMedia=' . $input->get('isMedia', 0)); ?>" method="post" name="adminForm" id="adminForm">
 | |
|                                 <input type="hidden" name="isMedia" value="<?php echo $input->get('isMedia', 0); ?>">
 | |
|                                 <div class="editor-border">
 | |
|                                     <?php echo $this->form->getInput('source'); ?>
 | |
|                                 </div>
 | |
|                                 <input type="hidden" name="task" value="" />
 | |
|                                 <?php echo HTMLHelper::_('form.token'); ?>
 | |
|                                 <?php echo $this->form->getInput('extension_id'); ?>
 | |
|                                 <?php echo $this->form->getInput('filename'); ?>
 | |
|                             </form>
 | |
|                         </div>
 | |
|                         <?php if (!empty($this->source->coreFile)) : ?>
 | |
|                             <div class="col-md-12" id="core-pane">
 | |
|                                 <h2><?php echo Text::_('COM_TEMPLATES_FILE_CORE_PANE'); ?></h2>
 | |
|                                 <div class="editor-border">
 | |
|                                     <?php echo $this->form->getInput('core'); ?>
 | |
|                                 </div>
 | |
|                             </div>
 | |
|                             <?php
 | |
|                                 $difference = DiffHelper::calculateFiles(
 | |
|                                     $this->source->coreFile,
 | |
|                                     $this->source->filePath,
 | |
|                                     ComponentHelper::getParams('com_templates')->get('difference', 'SideBySide'),
 | |
|                                     [
 | |
|                                         'context' => 1,
 | |
|                                         'ignoreLineEnding' => true,
 | |
|                                     ],
 | |
|                                     [
 | |
|                                         'language' => [
 | |
|                                             'old_version' => Text::_('COM_TEMPLATES_DIFF_CORE'),
 | |
|                                             'new_version' => Text::_('COM_TEMPLATES_DIFF_OVERRIDE'),
 | |
|                                             'differences' => Text::_('COM_TEMPLATES_DIFF_DIFFERENCES'),
 | |
|                                         ],
 | |
|                                         'resultForIdenticals' => Text::_('COM_TEMPLATES_DIFF_IDENTICAL'),
 | |
|                                         'detailLevel' => 'word',
 | |
|                                         'spaceToHtmlTag' => true,
 | |
|                                         'wrapperClasses' => ['diff-wrapper', 'columns-order-ignore'],
 | |
|                                     ]
 | |
|                                 );
 | |
|                             ?>
 | |
|                             <div class="col-md-12" id="diff-main">
 | |
|                                 <h2><?php echo Text::_('COM_TEMPLATES_FILE_COMPARE_PANE'); ?></h2>
 | |
|                                 <div class="diff-pane">
 | |
|                                     <div id="diff"><?php echo $difference; ?></div>
 | |
|                                 </div>
 | |
|                             </div>
 | |
|                         <?php endif; ?>
 | |
|                     </div>
 | |
|                 <?php elseif ($this->type == 'archive') : ?>
 | |
|                     <legend><?php echo Text::_('COM_TEMPLATES_FILE_CONTENT_PREVIEW'); ?></legend>
 | |
|                     <form action="<?php echo Route::_('index.php?option=com_templates&view=template&id=' . $input->getInt('id') . '&file=' . $this->file . '&isMedia=' . $input->get('isMedia', 0)); ?>" method="post" name="adminForm" id="adminForm">
 | |
|                         <ul class="nav flex-column well">
 | |
|                             <?php foreach ($this->archive as $file) : ?>
 | |
|                                 <li>
 | |
|                                     <?php if (substr($file, -1) === DIRECTORY_SEPARATOR) : ?>
 | |
|                                         <span class="icon-folder icon-fw" aria-hidden="true"></span> <?php echo $file; ?>
 | |
|                                     <?php endif; ?>
 | |
|                                     <?php if (substr($file, -1) != DIRECTORY_SEPARATOR) : ?>
 | |
|                                         <span class="icon-file icon-fw" aria-hidden="true"></span> <?php echo $file; ?>
 | |
|                                     <?php endif; ?>
 | |
|                                 </li>
 | |
|                             <?php endforeach; ?>
 | |
|                         </ul>
 | |
|                         <input type="hidden" name="task" value="">
 | |
|                         <?php echo HTMLHelper::_('form.token'); ?>
 | |
|                     </form>
 | |
|                 <?php elseif ($this->type == 'image') : ?>
 | |
|                     <legend><?php echo $this->escape(basename($this->image['address'])); ?></legend>
 | |
|                     <img id="image-crop" src="<?php echo $this->image['address'] . '?' . time(); ?>" style="max-width: 100%">
 | |
|                     <form action="<?php echo Route::_('index.php?option=com_templates&view=template&id=' . $input->getInt('id') . '&file=' . $this->file . '&isMedia=' . $input->get('isMedia', 0)); ?>" method="post" name="adminForm" id="adminForm">
 | |
|                         <fieldset class="adminform">
 | |
|                             <input type="hidden" id="x" name="x">
 | |
|                             <input type="hidden" id="y" name="y">
 | |
|                             <input type="hidden" id="h" name="h">
 | |
|                             <input type="hidden" id="w" name="w">
 | |
|                             <input type="hidden" id="imageWidth" value="<?php echo $this->image['width']; ?>">
 | |
|                             <input type="hidden" id="imageHeight" value="<?php echo $this->image['height']; ?>">
 | |
|                             <input type="hidden" name="task" value="">
 | |
|                             <?php echo HTMLHelper::_('form.token'); ?>
 | |
|                         </fieldset>
 | |
|                     </form>
 | |
|                 <?php elseif ($this->type == 'font') : ?>
 | |
|                     <div class="font-preview">
 | |
|                         <form action="<?php echo Route::_('index.php?option=com_templates&view=template&id=' . $input->getInt('id') . '&file=' . $this->file . '&isMedia=' . $input->get('isMedia', 0)); ?>" method="post" name="adminForm" id="adminForm">
 | |
|                             <fieldset class="adminform">
 | |
|                                 <h1>H1. Quickly gaze at Joomla! views from HTML, CSS, JavaScript and XML</h1>
 | |
|                                 <h2>H2. Quickly gaze at Joomla! views from HTML, CSS, JavaScript and XML</h2>
 | |
|                                 <h3>H3. Quickly gaze at Joomla! views from HTML, CSS, JavaScript and XML</h3>
 | |
|                                 <h4>H4. Quickly gaze at Joomla! views from HTML, CSS, JavaScript and XML</h4>
 | |
|                                 <h5>H5. Quickly gaze at Joomla! views from HTML, CSS, JavaScript and XML</h5>
 | |
|                                 <h6>H6. Quickly gaze at Joomla! views from HTML, CSS, JavaScript and XML</h6>
 | |
|                                 <p><strong>Bold. Quickly gaze at Joomla! views from HTML, CSS, JavaScript and XML</strong></p>
 | |
|                                 <p><em>Italics. Quickly gaze at Joomla! views from HTML, CSS, JavaScript and XML</em></p>
 | |
|                                 <p>Unordered List</p>
 | |
|                                 <ul>
 | |
|                                     <li>Item</li>
 | |
|                                     <li>Item</li>
 | |
|                                     <li>Item<br>
 | |
|                                         <ul>
 | |
|                                             <li>Item</li>
 | |
|                                             <li>Item</li>
 | |
|                                             <li>Item<br>
 | |
|                                                 <ul>
 | |
|                                                     <li>Item</li>
 | |
|                                                     <li>Item</li>
 | |
|                                                     <li>Item</li>
 | |
|                                                 </ul>
 | |
|                                             </li>
 | |
|                                         </ul>
 | |
|                                     </li>
 | |
|                                 </ul>
 | |
|                                 <p class="lead">Ordered List</p>
 | |
|                                 <ol>
 | |
|                                     <li>Item</li>
 | |
|                                     <li>Item</li>
 | |
|                                     <li>Item<br>
 | |
|                                         <ul>
 | |
|                                             <li>Item</li>
 | |
|                                             <li>Item</li>
 | |
|                                             <li>Item<br>
 | |
|                                                 <ul>
 | |
|                                                     <li>Item</li>
 | |
|                                                     <li>Item</li>
 | |
|                                                     <li>Item</li>
 | |
|                                                 </ul>
 | |
|                                             </li>
 | |
|                                         </ul>
 | |
|                                     </li>
 | |
|                                 </ol>
 | |
|                                 <input type="hidden" name="task" value="">
 | |
|                                 <?php echo HTMLHelper::_('form.token'); ?>
 | |
|                             </fieldset>
 | |
|                         </form>
 | |
|                     </div>
 | |
|                 <?php endif; ?>
 | |
|             </fieldset>
 | |
|         </div>
 | |
|     </div>
 | |
|     <?php echo HTMLHelper::_('uitab.endTab'); ?>
 | |
|     <?php echo HTMLHelper::_('uitab.addTab', 'myTab', 'overrides', Text::_('COM_TEMPLATES_TAB_OVERRIDES')); ?>
 | |
|     <div class="row mt-2">
 | |
|         <div class="col-md-3">
 | |
|             <fieldset class="options-form">
 | |
|                 <legend><?php echo Text::_('COM_TEMPLATES_OVERRIDES_MODULES'); ?></legend>
 | |
|                 <ul class="list-unstyled">
 | |
|                     <?php $token = Session::getFormToken() . '=' . 1; ?>
 | |
|                     <?php foreach ($this->overridesList['modules'] as $module) : ?>
 | |
|                         <li>
 | |
|                             <?php
 | |
|                             $overrideLinkUrl = 'index.php?option=com_templates&view=template&task=template.overrides&folder=' . $module->path
 | |
|                                 . '&id=' . $input->getInt('id') . '&file=' . $this->file . '&isMedia=' . $input->get('isMedia', 0) . '&' . $token;
 | |
|                             ?>
 | |
|                             <a href="<?php echo Route::_($overrideLinkUrl); ?>">
 | |
|                                 <span class="icon-copy" aria-hidden="true"></span> <?php echo $module->name; ?>
 | |
|                             </a>
 | |
|                         </li>
 | |
|                     <?php endforeach; ?>
 | |
|                 </ul>
 | |
|             </fieldset>
 | |
|         </div>
 | |
|         <div class="col-md-3">
 | |
|             <fieldset class="options-form">
 | |
|                 <legend><?php echo Text::_('COM_TEMPLATES_OVERRIDES_COMPONENTS'); ?></legend>
 | |
|                 <ul class="list-unstyled">
 | |
|                     <?php $token = Session::getFormToken() . '=' . 1; ?>
 | |
|                     <?php foreach ($this->overridesList['components'] as $key => $value) : ?>
 | |
|                         <li class="component-folder">
 | |
|                             <a href="#" class="component-folder-url">
 | |
|                                 <span class="icon-folder icon-fw" aria-hidden="true"></span> <?php echo $key; ?>
 | |
|                             </a>
 | |
|                             <ul class="list-unstyled">
 | |
|                                 <?php foreach ($value as $view) : ?>
 | |
|                                     <li>
 | |
|                                         <?php
 | |
|                                         $overrideLinkUrl = 'index.php?option=com_templates&view=template&task=template.overrides&folder=' . $view->path
 | |
|                                             . '&id=' . $input->getInt('id') . '&file=' . $this->file . '&isMedia=' . $input->get('isMedia', 0) . '&' . $token;
 | |
|                                         ?>
 | |
|                                         <a class="component-file-url" href="<?php echo Route::_($overrideLinkUrl); ?>">
 | |
|                                             <span class="icon-copy" aria-hidden="true"></span> <?php echo $view->name; ?>
 | |
|                                         </a>
 | |
|                                     </li>
 | |
|                                 <?php endforeach; ?>
 | |
|                             </ul>
 | |
|                         </li>
 | |
|                     <?php endforeach; ?>
 | |
|                 </ul>
 | |
|             </fieldset>
 | |
|         </div>
 | |
|         <div class="col-md-3">
 | |
|             <fieldset class="options-form">
 | |
|                 <legend><?php echo Text::_('COM_TEMPLATES_OVERRIDES_PLUGINS'); ?></legend>
 | |
|                 <ul class="list-unstyled">
 | |
|                     <?php $token = Session::getFormToken() . '=' . 1; ?>
 | |
|                     <?php foreach ($this->overridesList['plugins'] as $key => $group) : ?>
 | |
|                         <li class="plugin-folder">
 | |
|                             <a href="#" class="plugin-folder-url">
 | |
|                                 <span class="icon-folder icon-fw" aria-hidden="true"></span> <?php echo $key; ?>
 | |
|                             </a>
 | |
|                             <ul class="list-unstyled">
 | |
|                                 <?php foreach ($group as $plugin) : ?>
 | |
|                                     <li>
 | |
|                                         <?php
 | |
|                                         $overrideLinkUrl = 'index.php?option=com_templates&view=template&task=template.overrides&folder=' . $plugin->path
 | |
|                                             . '&id=' . $input->getInt('id') . '&file=' . $this->file . '&isMedia=' . $input->get('isMedia', 0) . '&' . $token;
 | |
|                                         ?>
 | |
|                                         <a class="plugin-file-url" href="<?php echo Route::_($overrideLinkUrl); ?>">
 | |
|                                             <span class="icon-copy" aria-hidden="true"></span> <?php echo $plugin->name; ?>
 | |
|                                         </a>
 | |
|                                     </li>
 | |
|                                 <?php endforeach; ?>
 | |
|                             </ul>
 | |
|                         </li>
 | |
|                     <?php endforeach; ?>
 | |
|                 </ul>
 | |
|             </fieldset>
 | |
|         </div>
 | |
|         <div class="col-md-3">
 | |
|             <fieldset class="options-form">
 | |
|                 <legend><?php echo Text::_('COM_TEMPLATES_OVERRIDES_LAYOUTS'); ?></legend>
 | |
|                 <ul class="list-unstyled">
 | |
|                     <?php $token = Session::getFormToken() . '=' . 1; ?>
 | |
|                     <?php foreach ($this->overridesList['layouts'] as $key => $value) : ?>
 | |
|                         <li class="layout-folder">
 | |
|                             <a href="#" class="layout-folder-url">
 | |
|                                 <span class="icon-folder icon-fw" aria-hidden="true"></span> <?php echo $key; ?>
 | |
|                             </a>
 | |
|                             <ul class="list-unstyled">
 | |
|                                 <?php foreach ($value as $layout) : ?>
 | |
|                                     <li>
 | |
|                                         <?php
 | |
|                                         $overrideLinkUrl = 'index.php?option=com_templates&view=template&task=template.overrides&folder=' . $layout->path
 | |
|                                             . '&id=' . $input->getInt('id') . '&file=' . $this->file . '&' . $token . '&isMedia=' . $input->get('isMedia', 0);
 | |
|                                         ?>
 | |
|                                         <a href="<?php echo Route::_($overrideLinkUrl); ?>">
 | |
|                                             <span class="icon-copy" aria-hidden="true"></span> <?php echo $layout->name; ?>
 | |
|                                         </a>
 | |
|                                     </li>
 | |
|                                 <?php endforeach; ?>
 | |
|                             </ul>
 | |
|                         </li>
 | |
|                     <?php endforeach; ?>
 | |
|                 </ul>
 | |
|             </fieldset>
 | |
|         </div>
 | |
|     </div>
 | |
|     <?php echo HTMLHelper::_('uitab.endTab'); ?>
 | |
| 
 | |
|     <?php if ($this->pluginState) : ?>
 | |
|         <?php echo HTMLHelper::_('uitab.addTab', 'myTab', 'files', Text::_('COM_TEMPLATES_TAB_UPDATED_FILES')); ?>
 | |
|         <?php echo $this->loadTemplate('updated_files'); ?>
 | |
|         <?php echo HTMLHelper::_('uitab.endTab'); ?>
 | |
|     <?php endif; ?>
 | |
| 
 | |
|     <?php echo HTMLHelper::_('uitab.addTab', 'myTab', 'description', Text::_('COM_TEMPLATES_TAB_DESCRIPTION')); ?>
 | |
|     <div class="row mt-2">
 | |
|         <div class="col-12">
 | |
|             <?php echo $this->loadTemplate('description'); ?>
 | |
|         </div>
 | |
|     </div>
 | |
|     <?php echo HTMLHelper::_('uitab.endTab'); ?>
 | |
| 
 | |
|     <?php echo HTMLHelper::_('uitab.endTabSet'); ?>
 | |
| 
 | |
|     <?php // Collapse Modal
 | |
|     $taskName = isset($this->template->xmldata->inheritable) && (string) $this->template->xmldata->inheritable === '1' ? 'child' : 'copy';
 | |
|     $copyModalData = [
 | |
|         'selector' => $taskName . 'Modal',
 | |
|         'params'   => [
 | |
|             'title'  => Text::_('COM_TEMPLATES_TEMPLATE_' . strtoupper($taskName)),
 | |
|             'footer' => $this->loadTemplate('modal_' . $taskName . '_footer')
 | |
|         ],
 | |
|         'body' => $this->loadTemplate('modal_' . $taskName . '_body')
 | |
|     ];
 | |
|     ?>
 | |
|     <form action="<?php echo Route::_('index.php?option=com_templates&task=template.' . $taskName . '&id=' . $input->getInt('id') . '&file=' . $this->file); ?>" method="post">
 | |
|         <?php echo LayoutHelper::render('libraries.html.bootstrap.modal.main', $copyModalData); ?>
 | |
|         <?php echo HTMLHelper::_('form.token'); ?>
 | |
|     </form>
 | |
|     <?php if ($this->type != 'home') : ?>
 | |
|         <?php // Rename Modal
 | |
|         $renameModalData = [
 | |
|             'selector' => 'renameModal',
 | |
|             'params'   => [
 | |
|                 'title'  => Text::sprintf('COM_TEMPLATES_RENAME_FILE', str_replace('//', '/', $this->fileName)),
 | |
|                 'footer' => $this->loadTemplate('modal_rename_footer')
 | |
|             ],
 | |
|             'body' => $this->loadTemplate('modal_rename_body')
 | |
|         ];
 | |
|         ?>
 | |
|         <form action="<?php echo Route::_('index.php?option=com_templates&task=template.renameFile&id=' . $input->getInt('id') . '&file=' . $this->file . '&isMedia=' . $input->get('isMedia', 0)); ?>" method="post">
 | |
|             <?php echo LayoutHelper::render('libraries.html.bootstrap.modal.main', $renameModalData); ?>
 | |
|             <?php echo HTMLHelper::_('form.token'); ?>
 | |
|         </form>
 | |
|     <?php endif; ?>
 | |
|     <?php if ($this->type != 'home') : ?>
 | |
|         <?php // Delete Modal
 | |
|         $deleteModalData = [
 | |
|             'selector' => 'deleteModal',
 | |
|             'params'   => [
 | |
|                 'title'  => Text::_('COM_TEMPLATES_ARE_YOU_SURE'),
 | |
|                 'footer' => $this->loadTemplate('modal_delete_footer')
 | |
|             ],
 | |
|             'body' => $this->loadTemplate('modal_delete_body')
 | |
|         ];
 | |
|         ?>
 | |
|         <?php echo LayoutHelper::render('libraries.html.bootstrap.modal.main', $deleteModalData); ?>
 | |
|     <?php endif; ?>
 | |
|     <?php // File Modal
 | |
|     $fileModalData = [
 | |
|         'selector' => 'fileModal',
 | |
|         'params'   => [
 | |
|             'title'      => Text::_('COM_TEMPLATES_NEW_FILE_HEADER'),
 | |
|             'footer'     => $this->loadTemplate('modal_file_footer'),
 | |
|             'height'     => '400px',
 | |
|             'width'      => '800px',
 | |
|             'bodyHeight' => 70,
 | |
|             'modalWidth' => 80,
 | |
|         ],
 | |
|         'body' => $this->loadTemplate('modal_file_body')
 | |
|     ];
 | |
|     ?>
 | |
|     <?php echo LayoutHelper::render('libraries.html.bootstrap.modal.main', $fileModalData); ?>
 | |
|     <?php // Folder Modal
 | |
|     $folderModalData = [
 | |
|         'selector' => 'folderModal',
 | |
|         'params'   => [
 | |
|             'title'      => Text::_('COM_TEMPLATES_MANAGE_FOLDERS'),
 | |
|             'footer'     => $this->loadTemplate('modal_folder_footer'),
 | |
|             'height'     => '400px',
 | |
|             'width'      => '800px',
 | |
|             'bodyHeight' => 70,
 | |
|             'modalWidth' => 80,
 | |
|         ],
 | |
|         'body' => $this->loadTemplate('modal_folder_body')
 | |
|     ];
 | |
|     ?>
 | |
|     <?php echo LayoutHelper::render('libraries.html.bootstrap.modal.main', $folderModalData); ?>
 | |
|     <?php if ($this->type == 'image') : ?>
 | |
|         <?php // Resize Modal
 | |
|         $resizeModalData = [
 | |
|             'selector' => 'resizeModal',
 | |
|             'params'   => [
 | |
|                 'title'  => Text::_('COM_TEMPLATES_RESIZE_IMAGE'),
 | |
|                 'footer' => $this->loadTemplate('modal_resize_footer')
 | |
|             ],
 | |
|             'body' => $this->loadTemplate('modal_resize_body')
 | |
|         ];
 | |
|         ?>
 | |
|         <form action="<?php echo Route::_('index.php?option=com_templates&task=template.resizeImage&id=' . $input->getInt('id') . '&file=' . $this->file . '&isMedia=' . $input->get('isMedia', 0)); ?>" method="post">
 | |
|             <?php echo LayoutHelper::render('libraries.html.bootstrap.modal.main', $resizeModalData); ?>
 | |
|             <?php echo HTMLHelper::_('form.token'); ?>
 | |
|         </form>
 | |
|     <?php endif; ?>
 | |
| </div>
 |