122 lines
3.5 KiB
PHP
122 lines
3.5 KiB
PHP
<?php
|
|
/**
|
|
* @package quantummanager
|
|
* @author Dmitry Tsymbal <cymbal@delo-design.ru>
|
|
* @copyright Copyright © 2019 Delo Design & NorrNext. All rights reserved.
|
|
* @license GNU General Public License version 3 or later; see license.txt
|
|
* @link https://www.norrnext.com
|
|
*/
|
|
|
|
defined('_JEXEC') or die;
|
|
|
|
use Joomla\CMS\Component\ComponentHelper;
|
|
use Joomla\CMS\Factory;
|
|
|
|
$app = Factory::getApplication();
|
|
$app->getSession()->clear('quantummanagerroot');
|
|
$app->getSession()->clear('quantummanagerrootcheck');
|
|
$app->getSession()->clear('quantummanageraddscripts');
|
|
|
|
try {
|
|
JLoader::register('JFormFieldQuantumCombine', JPATH_ROOT . '/administrator/components/com_quantummanager/fields/quantumcombine.php');
|
|
JLoader::register('QuantummanagerHelper', JPATH_SITE . '/administrator/components/com_quantummanager/helpers/quantummanager.php');
|
|
$folderRoot = 'root';
|
|
|
|
$buttonsBun = [];
|
|
$fields = [
|
|
'quantumtreecatalogs' => [
|
|
'label' => '',
|
|
'directory' => $folderRoot,
|
|
'position' => 'container-left',
|
|
],
|
|
'quantumtoolbar' => [
|
|
'label' => '',
|
|
'position' => 'container-center-top',
|
|
'buttons' => 'all',
|
|
'buttonsBun' => '',
|
|
'cssClass' => 'qm-padding-small-left qm-padding-small-right qm-padding-small-top qm-padding-small-bottom',
|
|
],
|
|
'quantumupload' => [
|
|
'label' => '',
|
|
'position' => 'container-center-top',
|
|
'maxsize' => QuantummanagerHelper::getParamsComponentValue('maxsize', '10'),
|
|
'dropAreaHidden' => QuantummanagerHelper::getParamsComponentValue('dropareahidden', '0'),
|
|
'directory' => $folderRoot,
|
|
'cssClass' => 'qm-padding-small-left qm-padding-small-right qm-padding-small-bottom',
|
|
],
|
|
'quantumviewfiles' => [
|
|
'label' => '',
|
|
'position' => 'container-center-center',
|
|
'directory' => $folderRoot,
|
|
'view' => 'list-grid',
|
|
'onlyfiles' => '0',
|
|
'watermark' => QuantummanagerHelper::getParamsComponentValue('overlay' , 0) > 0 ? '1' : '0',
|
|
'help' => QuantummanagerHelper::getParamsComponentValue('help' , '1'),
|
|
'metafile' => QuantummanagerHelper::getParamsComponentValue('metafile' , '1'),
|
|
],
|
|
'quantumcropperjs' => [
|
|
'label' => '',
|
|
'position' => 'bottom'
|
|
],
|
|
];
|
|
|
|
if((int)QuantummanagerHelper::getParamsComponentValue('unsplash', '1'))
|
|
{
|
|
$fields['quantumunsplash'] = [
|
|
'label' => '',
|
|
'position' => 'bottom'
|
|
];
|
|
}
|
|
|
|
|
|
if((int)QuantummanagerHelper::getParamsComponentValue('pexels', '1'))
|
|
{
|
|
$fields['quantumpexels'] = [
|
|
'label' => '',
|
|
'position' => 'bottom'
|
|
];
|
|
}
|
|
|
|
if((int)QuantummanagerHelper::getParamsComponentValue('pixabay', '1'))
|
|
{
|
|
$fields['quantumpixabay'] = [
|
|
'label' => '',
|
|
'position' => 'bottom'
|
|
];
|
|
}
|
|
|
|
$actions = QuantummanagerHelper::getActions();
|
|
if (!$actions->get('core.create'))
|
|
{
|
|
$buttonsBun[] = 'viewfilesCreateDirectory';
|
|
unset($fields['quantumupload']);
|
|
}
|
|
|
|
if (!$actions->get('core.delete'))
|
|
{
|
|
unset($fields['quantumcropperjs']);
|
|
}
|
|
|
|
if (!$actions->get('core.delete'))
|
|
{
|
|
$buttonsBun[] = 'viewfilesDelete';
|
|
}
|
|
|
|
$optionsForField = [
|
|
'name' => 'filemanager',
|
|
'label' => '',
|
|
'cssClass' => 'quantummanager-height-medium',
|
|
'fields' => json_encode($fields)
|
|
];
|
|
|
|
$field = new JFormFieldQuantumCombine();
|
|
foreach ($optionsForField as $name => $value)
|
|
{
|
|
$field->__set($name, $value);
|
|
}
|
|
echo $field->getInput();
|
|
|
|
}
|
|
catch (Exception $e) {
|
|
echo $e->getMessage();
|
|
} |