2019-07-15 20:00:46 +00:00
|
|
|
<?php
|
2021-03-05 03:08:47 +00:00
|
|
|
/**
|
|
|
|
* @package Joomla.Component.Builder
|
|
|
|
*
|
|
|
|
* @created 30th April, 2015
|
2022-07-09 15:45:08 +00:00
|
|
|
* @author Llewellyn van der Merwe <https://dev.vdm.io>
|
|
|
|
* @git Joomla Component Builder <https://git.vdm.dev/joomla/Component-Builder>
|
2021-03-05 03:08:47 +00:00
|
|
|
* @copyright Copyright (C) 2015 Vast Development Method. All rights reserved.
|
|
|
|
* @license GNU General Public License version 2 or later; see LICENSE.txt
|
|
|
|
*/
|
|
|
|
|
|
|
|
// No direct access to this file
|
|
|
|
defined('_JEXEC') or die('Restricted access');
|
|
|
|
|
2024-03-02 20:10:30 +00:00
|
|
|
use Joomla\CMS\Factory;
|
|
|
|
use Joomla\CMS\Language\Text;
|
2022-05-25 08:30:55 +00:00
|
|
|
use Joomla\CMS\MVC\Controller\AdminController;
|
2021-03-05 03:08:47 +00:00
|
|
|
use Joomla\Utilities\ArrayHelper;
|
2024-03-02 20:10:30 +00:00
|
|
|
use Joomla\CMS\Router\Route;
|
|
|
|
use Joomla\CMS\Session\Session;
|
2021-03-05 03:08:47 +00:00
|
|
|
|
|
|
|
/**
|
2022-05-25 08:30:55 +00:00
|
|
|
* Joomla_plugins Admin Controller
|
2021-03-05 03:08:47 +00:00
|
|
|
*/
|
2022-05-25 08:30:55 +00:00
|
|
|
class ComponentbuilderControllerJoomla_plugins extends AdminController
|
2021-03-05 03:08:47 +00:00
|
|
|
{
|
|
|
|
/**
|
|
|
|
* The prefix to use with controller messages.
|
|
|
|
*
|
|
|
|
* @var string
|
|
|
|
* @since 1.6
|
|
|
|
*/
|
|
|
|
protected $text_prefix = 'COM_COMPONENTBUILDER_JOOMLA_PLUGINS';
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Method to get a model object, loading it if required.
|
|
|
|
*
|
|
|
|
* @param string $name The model name. Optional.
|
|
|
|
* @param string $prefix The class prefix. Optional.
|
|
|
|
* @param array $config Configuration array for model. Optional.
|
|
|
|
*
|
|
|
|
* @return JModelLegacy The model.
|
|
|
|
*
|
|
|
|
* @since 1.6
|
|
|
|
*/
|
|
|
|
public function getModel($name = 'Joomla_plugin', $prefix = 'ComponentbuilderModel', $config = array('ignore_request' => true))
|
|
|
|
{
|
|
|
|
return parent::getModel($name, $prefix, $config);
|
2019-07-15 20:00:46 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* get Boilerplate
|
|
|
|
*
|
|
|
|
* @return boolean
|
|
|
|
*/
|
|
|
|
public function getBoilerplate()
|
|
|
|
{
|
|
|
|
// Check for request forgeries
|
2024-03-02 20:10:30 +00:00
|
|
|
Session::checkToken() or jexit(Text::_('JINVALID_TOKEN'));
|
2019-07-15 20:00:46 +00:00
|
|
|
// check if user has the right
|
2024-03-02 20:10:30 +00:00
|
|
|
$user = Factory::getUser();
|
2019-07-15 20:00:46 +00:00
|
|
|
// set page redirect
|
2024-04-27 13:45:07 +00:00
|
|
|
$redirect_url = Route::_('index.php?option=com_componentbuilder&view=joomla_plugins', false);
|
2019-07-15 20:00:46 +00:00
|
|
|
// set massage
|
2024-03-02 20:10:30 +00:00
|
|
|
$message = Text::_('COM_COMPONENTBUILDER_YOU_DO_NOT_HAVE_PERMISSION_TO_RUN_THE_GET_BOILERPLATE_MODULE');
|
2019-07-15 20:00:46 +00:00
|
|
|
// check if this user has the right to run expansion
|
|
|
|
if($user->authorise('joomla_plugin.get_boilerplate', 'com_componentbuilder'))
|
|
|
|
{
|
|
|
|
// set massage
|
2024-03-02 20:10:30 +00:00
|
|
|
$message = Text::_('COM_COMPONENTBUILDER_GETTING_JOOMLA_PLUGIN_BOILERPLATE_FAILED_IF_THE_ISSUE_CONTINUES_INFORM_YOUR_SYSTEM_ADMINISTRATOR');
|
2019-07-15 20:00:46 +00:00
|
|
|
// Get the model
|
|
|
|
$model = $this->getModel('joomla_plugins');
|
|
|
|
// check if there is any selections
|
|
|
|
if (!$model->getBoilerplate())
|
|
|
|
{
|
2024-03-02 20:10:30 +00:00
|
|
|
$message = '<b>' . Text::_('COM_COMPONENTBUILDER_GETTING_JOOMLA_PLUGIN_BOILERPLATE_WAS_SUCCESSFULLY') . '</b>';
|
2019-07-15 20:00:46 +00:00
|
|
|
$this->setRedirect($redirect_url, $message, 'message');
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
$this->setRedirect($redirect_url, $message, 'error');
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2019-07-16 23:15:42 +00:00
|
|
|
public function openClassMethods()
|
|
|
|
{
|
|
|
|
// Check for request forgeries
|
2024-03-02 20:10:30 +00:00
|
|
|
Session::checkToken() or die(Text::_('JINVALID_TOKEN'));
|
2019-07-16 23:15:42 +00:00
|
|
|
// redirect to the libraries
|
2024-03-02 20:10:30 +00:00
|
|
|
$this->setRedirect(Route::_('index.php?option=com_componentbuilder&view=class_methods', false));
|
2019-07-16 23:15:42 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
public function openClassProperties()
|
|
|
|
{
|
|
|
|
// Check for request forgeries
|
2024-03-02 20:10:30 +00:00
|
|
|
Session::checkToken() or die(Text::_('JINVALID_TOKEN'));
|
2019-07-16 23:15:42 +00:00
|
|
|
// redirect to the libraries
|
2024-03-02 20:10:30 +00:00
|
|
|
$this->setRedirect(Route::_('index.php?option=com_componentbuilder&view=class_properties', false));
|
2019-07-16 23:15:42 +00:00
|
|
|
return;
|
2021-03-05 03:08:47 +00:00
|
|
|
}
|
2023-10-18 07:26:30 +00:00
|
|
|
}
|