2016-03-06 00:50:22 +00:00
|
|
|
<?php
|
|
|
|
/*--------------------------------------------------------------------------------------------------------| www.vdm.io |------/
|
|
|
|
__ __ _ _____ _ _ __ __ _ _ _
|
|
|
|
\ \ / / | | | __ \ | | | | | \/ | | | | | | |
|
|
|
|
\ \ / /_ _ ___| |_ | | | | _____ _____| | ___ _ __ _ __ ___ ___ _ __ | |_ | \ / | ___| |_| |__ ___ __| |
|
|
|
|
\ \/ / _` / __| __| | | | |/ _ \ \ / / _ \ |/ _ \| '_ \| '_ ` _ \ / _ \ '_ \| __| | |\/| |/ _ \ __| '_ \ / _ \ / _` |
|
|
|
|
\ / (_| \__ \ |_ | |__| | __/\ V / __/ | (_) | |_) | | | | | | __/ | | | |_ | | | | __/ |_| | | | (_) | (_| |
|
|
|
|
\/ \__,_|___/\__| |_____/ \___| \_/ \___|_|\___/| .__/|_| |_| |_|\___|_| |_|\__| |_| |_|\___|\__|_| |_|\___/ \__,_|
|
|
|
|
| |
|
|
|
|
|_|
|
|
|
|
/-------------------------------------------------------------------------------------------------------------------------------/
|
|
|
|
|
2018-05-05 13:35:10 +00:00
|
|
|
@version 1.0.8
|
|
|
|
@build 5th May, 2018
|
2016-03-06 00:50:22 +00:00
|
|
|
@created 24th February, 2016
|
|
|
|
@package Support Groups
|
|
|
|
@subpackage controller.php
|
|
|
|
@author Llewellyn van der Merwe <http://www.vdm.io>
|
|
|
|
@copyright Copyright (C) 2015. All Rights Reserved
|
|
|
|
@license GNU/GPL Version 2 or later - http://www.gnu.org/licenses/gpl-2.0.html
|
|
|
|
|
|
|
|
Support Groups
|
|
|
|
|
|
|
|
/-----------------------------------------------------------------------------------------------------------------------------*/
|
|
|
|
|
|
|
|
// No direct access to this file
|
|
|
|
defined('_JEXEC') or die('Restricted access');
|
|
|
|
|
|
|
|
// import Joomla controller library
|
|
|
|
jimport('joomla.application.component.controller');
|
|
|
|
|
|
|
|
/**
|
|
|
|
* General Controller of Supportgroups component
|
|
|
|
*/
|
|
|
|
class SupportgroupsController extends JControllerLegacy
|
|
|
|
{
|
2018-05-05 13:35:10 +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'] = 'supportgroups';
|
|
|
|
|
|
|
|
parent::__construct($config);
|
|
|
|
}
|
|
|
|
|
2016-03-06 00:50:22 +00:00
|
|
|
/**
|
|
|
|
* display task
|
|
|
|
*
|
|
|
|
* @return void
|
|
|
|
*/
|
2018-05-05 13:35:10 +00:00
|
|
|
function display($cachable = false, $urlparams = false)
|
2016-03-06 00:50:22 +00:00
|
|
|
{
|
|
|
|
// set default view if not set
|
2018-05-05 13:35:10 +00:00
|
|
|
$view = $this->input->getCmd('view', 'supportgroups');
|
2016-03-06 00:50:22 +00:00
|
|
|
$data = $this->getViewRelation($view);
|
|
|
|
$layout = $this->input->get('layout', null, 'WORD');
|
|
|
|
$id = $this->input->getInt('id');
|
|
|
|
|
|
|
|
// Check for edit form.
|
2018-05-05 13:35:10 +00:00
|
|
|
if(SupportgroupsHelper::checkArray($data))
|
|
|
|
{
|
|
|
|
if ($data['edit'] && $layout == 'edit' && !$this->checkEditId('com_supportgroups.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 && SupportgroupsHelper::checkString($ref))
|
|
|
|
{
|
|
|
|
// redirect to item of ref
|
|
|
|
$this->setRedirect(JRoute::_('index.php?option=com_supportgroups&view='.(string)$ref.'&layout=edit&id='.(int)$refid, false));
|
|
|
|
}
|
|
|
|
elseif (SupportgroupsHelper::checkString($ref))
|
|
|
|
{
|
2016-03-06 00:50:22 +00:00
|
|
|
|
2018-05-05 13:35:10 +00:00
|
|
|
// redirect to ref
|
|
|
|
$this->setRedirect(JRoute::_('index.php?option=com_supportgroups&view='.(string)$ref, false));
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
// normal redirect back to the list view
|
|
|
|
$this->setRedirect(JRoute::_('index.php?option=com_supportgroups&view='.$data['views'], false));
|
|
|
|
}
|
2016-03-06 00:50:22 +00:00
|
|
|
|
2018-05-05 13:35:10 +00:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
2016-03-06 00:50:22 +00:00
|
|
|
|
|
|
|
return parent::display($cachable, $urlparams);
|
|
|
|
}
|
|
|
|
|
|
|
|
protected function getViewRelation($view)
|
|
|
|
{
|
2018-05-05 13:35:10 +00:00
|
|
|
// check the we have a value
|
|
|
|
if (SupportgroupsHelper::checkString($view))
|
|
|
|
{
|
|
|
|
// the view relationships
|
|
|
|
$views = array(
|
2016-03-06 00:50:22 +00:00
|
|
|
'support_group' => 'support_groups',
|
2016-03-08 10:24:26 +00:00
|
|
|
'payment' => 'payments',
|
2018-05-05 13:35:10 +00:00
|
|
|
'facility' => 'facilities',
|
|
|
|
'facility_type' => 'facility_types',
|
|
|
|
'additional_info' => 'additional_information',
|
|
|
|
'info_type' => 'info_types',
|
|
|
|
'area' => 'areas',
|
|
|
|
'area_type' => 'area_types',
|
2016-03-06 00:50:22 +00:00
|
|
|
'region' => 'regions',
|
2016-03-08 10:24:26 +00:00
|
|
|
'country' => 'countries',
|
2016-03-06 00:50:22 +00:00
|
|
|
'currency' => 'currencies',
|
2016-03-08 10:24:26 +00:00
|
|
|
'help_document' => 'help_documents'
|
2018-05-05 13:35:10 +00:00
|
|
|
);
|
|
|
|
// 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]);
|
|
|
|
}
|
|
|
|
}
|
2016-03-06 00:50:22 +00:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|