Spade
Mini Shell
| Directory:~$ /home/lmsyaran/public_html/j3/administrator/components/com_phocacart/models/ |
| [Home] [System Details] [Kill Me] |
<?php
/* @package Joomla
* @copyright Copyright (C) Open Source Matters. All rights reserved.
* @license http://www.gnu.org/copyleft/gpl.html GNU/GPL, see LICENSE.php
* @extension Phoca Extension
* @copyright Copyright (C) Jan Pavelka www.phoca.cz
* @license http://www.gnu.org/copyleft/gpl.html GNU/GPL
*/
defined( '_JEXEC' ) or die();
jimport('joomla.application.component.modeladmin');
class PhocaCartCpModelPhocaCartParamA extends JModelAdmin
{
protected $option = 'com_phocacart';
protected $text_prefix = 'com_phocacart';
protected $formNameR;
protected $formName;
public function setFormName($formNameR, $formName) {
$this->formNameR = $formNameR;
$this->formName = $formName;
}
protected function canDelete($record) {
return parent::canDelete($record);
}
protected function canEditState($record) {
return parent::canEditState($record);
}
// PhocacartPayment
// PhocacartShipping
public function getTable($type = 'PhocacartPayment', $prefix =
'Table', $config = array()) {
$app = JFactory::getApplication();
$type = $app->input->get( 'type', '',
'int' );
if ($type == 2) {
$type = 'PhocacartShipping';
} else {
$type = 'PhocacartPayment';
}
return JTable::getInstance($type, $prefix, $config);
}
public function getForm($data = array(), $loadData = true) {
$form = $this->loadForm($this->formNameR, $this->formName,
array('control' => 'jform', 'load_data'
=> $loadData));
if (empty($form)) {
return false;
}
return $form;
}
protected function loadFormData() {
$data =
JFactory::getApplication()->getUserState('com_phocacart.edit.phocacartparama.data',
array());
if (empty($data)) {
$data = $this->getItem();
}
return $data;
}
/*
* Add additional parameter of the payment method to load it in payment
options (x001) - pcp
* Add additional parameter of the shipping method to load it in shipping
options (x001) - pcs
*/
protected function preprocessForm(JForm $form, $data, $group =
'pcp') {
jimport('joomla.filesystem.file');
jimport('joomla.filesystem.folder');
$app = JFactory::getApplication();
$type = $app->input->get( 'type', '',
'int' );
if ($type == 2) {
$group = 'pcs';
$folder = 'pcs';
} else {
$group = 'pcp';
$folder = 'pcp';
}
// Initialise variables.
//$folder =
'pcp';//$this->getState('item.folder');
//$element = $this->getState('item.element');
$app = JFactory::getApplication();
$method = $app->input->get( 'method', '',
'string' );// get the method, when start or when changed the
select box
$element = $method;
$lang = JFactory::getLanguage();
$client = JApplicationHelper::getClientInfo(0);
if (empty($folder) || empty($element)) {
//$app = JFactory::getApplication();
//$app->re-direct(JRoute::_('index.php?option=com_phocapdf&view=phocapdfcp',false),
JText::_('COM_PHOCACART_NO_FOLDER_OR_ELEMENT_FOUND'));
}
// Try 1.6 format: /plugins/folder/element/element.xml
$formFile =
JPath::clean($client->path.'/plugins/'.$folder.'/'.$element.'/'.$element.'.xml');
if (!file_exists($formFile)) {
// Try 1.5 format: /plugins/folder/element/element.xml
$formFile =
JPath::clean($client->path.'/plugins/'.$folder.'/'.$element.'.xml');
if (!file_exists($formFile)) {
throw new
Exception(JText::sprintf('COM_PHOCACART_ERROR_FILE_NOT_FOUND',
$element.'.xml'));
return false;
}
}
// Load the core and/or local language file(s).
$lang->load('plg_'.$folder.'_'.$element,
JPATH_ADMINISTRATOR, null, false, false)
|| $lang->load('plg_'.$folder.'_'.$element,
$client->path.'/plugins/'.$folder.'/'.$element,
null, false, false)
|| $lang->load('plg_'.$folder.'_'.$element,
JPATH_ADMINISTRATOR, $lang->getDefault(), false, false)
|| $lang->load('plg_'.$folder.'_'.$element,
$client->path.'/plugins/'.$folder.'/'.$element,
$lang->getDefault(), false, false);
if (file_exists($formFile)) {
// Get the plugin form.
if (!$form->loadFile($formFile, false, '//form')) {
throw new
Exception(JText::_('COM_PHOCACART_ERROR_LOADFILE_FAILED'));
}
}
// Attempt to load the xml file.
if (!$xml = simplexml_load_file($formFile)) {
throw new
Exception(JText::_('COM_PHOCACART_ERROR_LOADFILE_FAILED'));
}
// Get the help data from the XML file if present.
$help = $xml->xpath('/extension/help');
if (!empty($help)) {
$helpKey = trim((string) $help[0]['key']);
$helpURL = trim((string) $help[0]['url']);
$this->helpKey = $helpKey ? $helpKey : $this->helpKey;
$this->helpURL = $helpURL ? $helpURL : $this->helpURL;
}
// Trigger the default form events.
parent::preprocessForm($form, $data);
}
}
?>