110 lines
2.3 KiB
PHP
110 lines
2.3 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
|
|
*/
|
|
|
|
use Joomla\CMS\Application\CMSApplication;
|
|
use Joomla\CMS\Factory;
|
|
use Joomla\CMS\HTML\HTMLHelper;
|
|
use Joomla\CMS\Language\Text;
|
|
use Joomla\CMS\Layout\FileLayout;
|
|
use Joomla\CMS\Plugin\CMSPlugin;
|
|
use Joomla\Database\DatabaseDriver;
|
|
|
|
defined('_JEXEC') or die;
|
|
|
|
/**
|
|
* Quantumyoothemepro plugin.
|
|
*
|
|
* @package quantumyoothemepro
|
|
* @since 1.0.0
|
|
*/
|
|
class plgSystemQuantumyoothemepro extends CMSPlugin
|
|
{
|
|
/**
|
|
* Application object
|
|
*
|
|
* @var CMSApplication
|
|
* @since 1.0.0
|
|
*/
|
|
protected $app;
|
|
|
|
/**
|
|
* Database object
|
|
*
|
|
* @var DatabaseDriver
|
|
* @since 1.0.0
|
|
*/
|
|
protected $db;
|
|
|
|
/**
|
|
* Affects constructor behavior. If true, language files will be loaded automatically.
|
|
*
|
|
* @var boolean
|
|
* @since 1.0.0
|
|
*/
|
|
protected $autoloadLanguage = true;
|
|
|
|
|
|
/**
|
|
* onAfterRender.
|
|
*
|
|
* @return void
|
|
*
|
|
* @since 1.0.0
|
|
*/
|
|
public function onBeforeCompileHead()
|
|
{
|
|
|
|
$admin = $this->app->isClient('administrator');
|
|
$p = $this->app->input->getCmd('p', '');
|
|
|
|
if(!$admin)
|
|
{
|
|
return;
|
|
}
|
|
|
|
if(empty($p))
|
|
{
|
|
return;
|
|
}
|
|
|
|
HTMLHelper::_('script', 'plg_system_quantumyoothemepro/modal.js', [
|
|
'version' => filemtime(__FILE__),
|
|
'relative' => true
|
|
]);
|
|
|
|
HTMLHelper::_('script', 'com_quantummanager/utils.js', [
|
|
'version' => filemtime(__FILE__),
|
|
'relative' => true
|
|
]);
|
|
|
|
JLoader::register('QuantummanagerHelper', JPATH_SITE . '/administrator/components/com_quantummanager/helpers/quantummanager.php');
|
|
QuantummanagerHelper::loadLang();
|
|
|
|
$insert = htmlspecialchars(Text::_('COM_QUANTUMMANAGER_ACTION_SELECT'), ENT_QUOTES);
|
|
$cancel = htmlspecialchars(Text::_('COM_QUANTUMMANAGER_ACTION_CANCEL'), ENT_QUOTES);
|
|
Factory::getDocument()->addScriptDeclaration(<<<EOT
|
|
window.QuantumYoothemeproLang = {
|
|
'insert': "{$insert}",
|
|
'cancel': "{$cancel}",
|
|
};
|
|
EOT
|
|
);
|
|
}
|
|
|
|
|
|
public function onAjaxQuantumyoothemepro()
|
|
{
|
|
$layout = new FileLayout('select', JPATH_SITE . '/plugins/system/quantumyoothemepro/tmpl');
|
|
echo $layout->render();
|
|
//$this->app->close();
|
|
}
|
|
|
|
}
|