2016-01-30 20:28:43 +00:00
|
|
|
<?php
|
2021-03-05 03:08:47 +00:00
|
|
|
/**
|
|
|
|
* @package Joomla.Component.Builder
|
|
|
|
*
|
|
|
|
* @created 30th April, 2015
|
|
|
|
* @author Llewellyn van der Merwe <http://www.joomlacomponentbuilder.com>
|
2021-12-21 14:44:50 +00:00
|
|
|
* @gitea Joomla Component Builder <https://git.vdm.dev/joomla/Component-Builder>
|
2021-03-05 03:08:47 +00:00
|
|
|
* @github Joomla Component Builder <https://github.com/vdm-io/Joomla-Component-Builder>
|
|
|
|
* @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');
|
|
|
|
|
2022-05-25 08:30:55 +00:00
|
|
|
use Joomla\CMS\MVC\Controller\BaseController;
|
2021-03-05 03:08:47 +00:00
|
|
|
use Joomla\Utilities\ArrayHelper;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* General Controller of Componentbuilder component
|
|
|
|
*/
|
2022-05-25 08:30:55 +00:00
|
|
|
class ComponentbuilderController extends BaseController
|
2021-03-05 03:08:47 +00:00
|
|
|
{
|
|
|
|
/**
|
|
|
|
* Constructor.
|
|
|
|
*
|
|
|
|
* @param array $config An optional associative array of configuration settings.
|
|
|
|
* Recognized key values include 'name', 'default_task', 'model_path', and
|
|
|
|
* 'view_path' (this list is not meant to be comprehensive).
|
|
|
|
*
|
|
|
|
* @since 3.0
|
|
|
|
*/
|
|
|
|
public function __construct($config = array())
|
|
|
|
{
|
|
|
|
// set the default view
|
|
|
|
$config['default_view'] = 'componentbuilder';
|
|
|
|
|
|
|
|
parent::__construct($config);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* display task
|
|
|
|
*
|
|
|
|
* @return void
|
|
|
|
*/
|
|
|
|
function display($cachable = false, $urlparams = false)
|
|
|
|
{
|
|
|
|
// set default view if not set
|
|
|
|
$view = $this->input->getCmd('view', 'componentbuilder');
|
|
|
|
$data = $this->getViewRelation($view);
|
|
|
|
$layout = $this->input->get('layout', null, 'WORD');
|
|
|
|
$id = $this->input->getInt('id');
|
|
|
|
|
|
|
|
// Check for edit form.
|
|
|
|
if(ComponentbuilderHelper::checkArray($data))
|
|
|
|
{
|
|
|
|
if ($data['edit'] && $layout == 'edit' && !$this->checkEditId('com_componentbuilder.edit.'.$data['view'], $id))
|
|
|
|
{
|
|
|
|
// Somehow the person just went to the form - we don't allow that.
|
|
|
|
$this->setError(JText::sprintf('JLIB_APPLICATION_ERROR_UNHELD_ID', $id));
|
|
|
|
$this->setMessage($this->getError(), 'error');
|
|
|
|
// check if item was opend from other then its own list view
|
|
|
|
$ref = $this->input->getCmd('ref', 0);
|
|
|
|
$refid = $this->input->getInt('refid', 0);
|
|
|
|
// set redirect
|
|
|
|
if ($refid > 0 && ComponentbuilderHelper::checkString($ref))
|
|
|
|
{
|
|
|
|
// redirect to item of ref
|
|
|
|
$this->setRedirect(JRoute::_('index.php?option=com_componentbuilder&view='.(string)$ref.'&layout=edit&id='.(int)$refid, false));
|
|
|
|
}
|
|
|
|
elseif (ComponentbuilderHelper::checkString($ref))
|
|
|
|
{
|
|
|
|
|
|
|
|
// redirect to ref
|
|
|
|
$this->setRedirect(JRoute::_('index.php?option=com_componentbuilder&view='.(string)$ref, false));
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
// normal redirect back to the list view
|
|
|
|
$this->setRedirect(JRoute::_('index.php?option=com_componentbuilder&view='.$data['views'], false));
|
|
|
|
}
|
|
|
|
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return parent::display($cachable, $urlparams);
|
|
|
|
}
|
|
|
|
|
|
|
|
protected function getViewRelation($view)
|
|
|
|
{
|
|
|
|
// check the we have a value
|
|
|
|
if (ComponentbuilderHelper::checkString($view))
|
|
|
|
{
|
|
|
|
// the view relationships
|
2017-12-14 23:10:47 +00:00
|
|
|
$views = array(
|
2017-02-16 14:02:23 +00:00
|
|
|
'joomla_component' => 'joomla_components',
|
2019-12-03 02:17:35 +00:00
|
|
|
'joomla_module' => 'joomla_modules',
|
2019-07-15 20:00:46 +00:00
|
|
|
'joomla_plugin' => 'joomla_plugins',
|
2022-07-09 15:16:21 +00:00
|
|
|
'power' => 'powers',
|
2016-01-30 20:28:43 +00:00
|
|
|
'admin_view' => 'admin_views',
|
|
|
|
'custom_admin_view' => 'custom_admin_views',
|
|
|
|
'site_view' => 'site_views',
|
|
|
|
'template' => 'templates',
|
|
|
|
'layout' => 'layouts',
|
|
|
|
'dynamic_get' => 'dynamic_gets',
|
2017-02-01 13:17:04 +00:00
|
|
|
'custom_code' => 'custom_codes',
|
2019-07-15 20:00:46 +00:00
|
|
|
'class_property' => 'class_properties',
|
|
|
|
'class_method' => 'class_methods',
|
2019-02-15 22:03:21 +00:00
|
|
|
'placeholder' => 'placeholders',
|
2017-11-26 00:29:08 +00:00
|
|
|
'library' => 'libraries',
|
2016-01-30 20:28:43 +00:00
|
|
|
'snippet' => 'snippets',
|
2018-03-27 09:57:16 +00:00
|
|
|
'validation_rule' => 'validation_rules',
|
2016-01-30 20:28:43 +00:00
|
|
|
'field' => 'fields',
|
|
|
|
'fieldtype' => 'fieldtypes',
|
2017-04-05 13:21:10 +00:00
|
|
|
'language_translation' => 'language_translations',
|
2017-04-03 10:58:41 +00:00
|
|
|
'language' => 'languages',
|
2018-02-15 00:42:39 +00:00
|
|
|
'server' => 'servers',
|
2017-10-12 23:14:17 +00:00
|
|
|
'help_document' => 'help_documents',
|
|
|
|
'admin_fields' => 'admins_fields',
|
2017-10-26 16:43:51 +00:00
|
|
|
'admin_fields_conditions' => 'admins_fields_conditions',
|
2018-05-22 19:01:36 +00:00
|
|
|
'admin_fields_relations' => 'admins_fields_relations',
|
2018-08-24 21:46:41 +00:00
|
|
|
'admin_custom_tabs' => 'admins_custom_tabs',
|
2017-10-26 16:43:51 +00:00
|
|
|
'component_admin_views' => 'components_admin_views',
|
|
|
|
'component_site_views' => 'components_site_views',
|
|
|
|
'component_custom_admin_views' => 'components_custom_admin_views',
|
|
|
|
'component_updates' => 'components_updates',
|
|
|
|
'component_mysql_tweaks' => 'components_mysql_tweaks',
|
|
|
|
'component_custom_admin_menus' => 'components_custom_admin_menus',
|
|
|
|
'component_config' => 'components_config',
|
|
|
|
'component_dashboard' => 'components_dashboard',
|
2017-11-11 22:18:13 +00:00
|
|
|
'component_files_folders' => 'components_files_folders',
|
2019-02-15 22:03:21 +00:00
|
|
|
'component_placeholders' => 'components_placeholders',
|
2019-07-17 02:36:05 +00:00
|
|
|
'component_plugins' => 'components_plugins',
|
2019-12-06 05:31:32 +00:00
|
|
|
'component_modules' => 'components_modules',
|
2017-11-11 22:18:13 +00:00
|
|
|
'snippet_type' => 'snippet_types',
|
2017-11-26 00:29:08 +00:00
|
|
|
'library_config' => 'libraries_config',
|
2019-07-15 20:00:46 +00:00
|
|
|
'library_files_folders_urls' => 'libraries_files_folders_urls',
|
|
|
|
'class_extends' => 'class_extendings',
|
2019-12-03 02:17:35 +00:00
|
|
|
'joomla_module_updates' => 'joomla_modules_updates',
|
|
|
|
'joomla_module_files_folders_urls' => 'joomla_modules_files_folders_urls',
|
2019-07-28 21:48:42 +00:00
|
|
|
'joomla_plugin_group' => 'joomla_plugin_groups',
|
2019-08-08 15:35:58 +00:00
|
|
|
'joomla_plugin_updates' => 'joomla_plugins_updates',
|
2021-03-05 03:08:47 +00:00
|
|
|
'joomla_plugin_files_folders_urls' => 'joomla_plugins_files_folders_urls'
|
|
|
|
);
|
|
|
|
// check if this is a list view
|
|
|
|
if (in_array($view, $views))
|
|
|
|
{
|
|
|
|
// this is a list view
|
|
|
|
return array('edit' => false, 'view' => array_search($view,$views), 'views' => $view);
|
|
|
|
}
|
|
|
|
// check if it is an edit view
|
|
|
|
elseif (array_key_exists($view, $views))
|
|
|
|
{
|
|
|
|
// this is a edit view
|
|
|
|
return array('edit' => true, 'view' => $view, 'views' => $views[$view]);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|