76 lines
		
	
	
		
			3.1 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			76 lines
		
	
	
		
			3.1 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
| <?php
 | |
| 
 | |
| /**
 | |
|  * @package     Joomla.Administrator
 | |
|  * @subpackage  com_media
 | |
|  *
 | |
|  * @copyright   (C) 2017 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 Joomla\CMS\Component\ComponentHelper;
 | |
| use Joomla\CMS\Factory;
 | |
| use Joomla\CMS\HTML\HTMLHelper;
 | |
| use Joomla\CMS\Layout\LayoutHelper;
 | |
| use Joomla\CMS\Session\Session;
 | |
| use Joomla\CMS\Uri\Uri;
 | |
| 
 | |
| /** @var \Joomla\Component\Media\Administrator\View\File\HtmlView $this */
 | |
| 
 | |
| /** @var Joomla\CMS\WebAsset\WebAssetManager $wa */
 | |
| $wa = $this->getDocument()->getWebAssetManager();
 | |
| $wa->useScript('keepalive')
 | |
|     ->useScript('form.validate')
 | |
|     ->useStyle('com_media.mediamanager');
 | |
| 
 | |
| $script = $wa->getAsset('script', 'com_media.edit-images')->getUri(true);
 | |
| 
 | |
| $params = ComponentHelper::getParams('com_media');
 | |
| $input  = Factory::getApplication()->getInput();
 | |
| 
 | |
| /** @var \Joomla\CMS\Form\Form $form */
 | |
| $form = $this->form;
 | |
| 
 | |
| $tmpl = $input->getCmd('tmpl');
 | |
| 
 | |
| $input->set('hidemainmenu', true);
 | |
| 
 | |
| $mediaTypes = $input->getString('mediatypes', '0');
 | |
| 
 | |
| // Populate the media config
 | |
| $config = [
 | |
|     'apiBaseUrl'         => Uri::base() . 'index.php?option=com_media&format=json' . '&mediatypes=' . $mediaTypes,
 | |
|     'csrfToken'          => Session::getFormToken(),
 | |
|     'uploadPath'         => $this->file->path,
 | |
|     'editViewUrl'        => Uri::base() . 'index.php?option=com_media&view=file' . ($tmpl ? '&tmpl=' . $tmpl : '') . '&mediatypes=' . $mediaTypes,
 | |
|     'imagesExtensions'   => array_map('trim', explode(',', $params->get('image_extensions', 'bmp,gif,jpg,jpeg,png,webp,avif'))),
 | |
|     'audioExtensions'    => array_map('trim', explode(',', $params->get('audio_extensions', 'mp3,m4a,mp4a,ogg'))),
 | |
|     'videoExtensions'    => array_map('trim', explode(',', $params->get('video_extensions', 'mp4,mp4v,mpeg,mov,webm'))),
 | |
|     'documentExtensions' => array_map('trim', explode(',', $params->get('doc_extensions', 'doc,odg,odp,ods,odt,pdf,ppt,txt,xcf,xls,csv'))),
 | |
|     'maxUploadSizeMb'    => $params->get('upload_maxsize', 10),
 | |
|     'contents'           => $this->file->content,
 | |
| ];
 | |
| 
 | |
| $this->getDocument()->addScriptOptions('com_media', $config);
 | |
| 
 | |
| $this->useCoreUI = true;
 | |
| ?>
 | |
| <?php if ($tmpl === 'component') : ?>
 | |
| <div class="subhead noshadow mb-3">
 | |
|     <?php echo $this->getDocument()->getToolbar('toolbar')->render(); ?>
 | |
| </div>
 | |
| <?php endif; ?>
 | |
| <form action="#" method="post" name="adminForm" id="media-form" class="form-validate main-card media-form mt-3">
 | |
|     <?php $fieldSets = $form->getFieldsets(); ?>
 | |
|     <?php if ($fieldSets) : ?>
 | |
|         <?php echo HTMLHelper::_('uitab.startTabSet', 'myTab', ['active' => 'attrib-' . reset($fieldSets)->name, 'breakpoint' => 768]); ?>
 | |
|         <?php echo LayoutHelper::render('joomla.edit.params', $this); ?>
 | |
|         <?php echo '<div id="media-manager-edit-container" class="media-manager-edit"></div>'; ?>
 | |
|         <?php echo HTMLHelper::_('uitab.endTabSet'); ?>
 | |
|     <?php endif; ?>
 | |
|     <input type="hidden" name="mediatypes" value="<?php echo $this->escape($mediaTypes); ?>">
 | |
| </form>
 | |
| <script type="module" src="<?php echo $script . '?' . $this->getDocument()->getMediaVersion(); ?>"></script>
 |