| Current Path : /home/gotzfrokfn/www/administrator/components/com_virtuemart/views/userfields/ |
| Current File : /home/gotzfrokfn/www/administrator/components/com_virtuemart/views/userfields/view.json.php |
<?php
/**
*
* Description
*
* @package VirtueMart
* @subpackage
* @author Patrick Kohl
* @link https://virtuemart.net
* @copyright Copyright (c) 2004 - 2010 VirtueMart Team. All rights reserved.
* @license http://www.gnu.org/copyleft/gpl.html GNU/GPL, see LICENSE.php
* VirtueMart is free software. This version may have been modified pursuant
* to the GNU General Public License, and as distributed it includes or
* is derivative of works licensed under the GNU General Public License or
* other free or open source software licenses.
* @version $Id: view.html.php 3006 2011-04-08 13:16:08Z Milbo $
*/
// Check to ensure this file is included in Joomla!
defined('_JEXEC') or die('Restricted access');
/**
* Json View class for the VirtueMart Component
*
* @package VirtueMart
* @author Patrick Kohl
*/
class VirtuemartViewUserfields extends VmViewAdmin {
function display($tpl = null) {
$db = JFactory::getDBO();
if ( $field = vRequest::getVar('field') ) {
if (strpos($field, 'plugin') !==false) {
JForm::addFieldPath(VMPATH_ADMIN .'/fields');
$table = '#__extensions';
$field = substr($field, 6);
$q = 'SELECT `params`,`element`,`type` FROM `' . $table . '` WHERE `element` = "'.$field.'" and state="0"';
$db ->setQuery($q);
$this->userField = $db ->loadObject();
//$this->userField->element = substr($this->userField->type, 6);
vmPlugin::loadJLang('plg_vmuserfield_'.$this->userField->element, 'vmuserfield',$this->userField->element);
$path = VMPATH_ROOT .'/plugins/vmuserfield/'. $this->userField->element . '/' . $this->userField->element . '.xml';
// Get the payment XML.
$formFile = vRequest::filterPath( $path );
if (file_exists($formFile)){
$this->userField->form = JForm::getInstance($this->userField->element, $formFile, array(),false, '//vmconfig | //config[not(//vmconfig)]');
$this->userField->params = new stdClass();
$varsToPush = vmPlugin::getVarsToPushFromForm($this->userField->form);
/*
$this->userField->params->userfield_params = $this->userField->params;
VmTable::bindParameterable($this->userField->params,'userfield_params',$varsToPush);*/
if(empty($this->userField->userfield_params)) $this->userField->userfield_params = '';
VmTable::bindParameterableToSubField($this->userField,$varsToPush);
$this->userField->form->bind($this->userField);
} else {
$this->userField->form = false;
vmdebug('renderUserfieldPlugin could not find xml for '.$this->userField->type.' at '.$path);
}
//vmdebug('renderUserfieldPlugin ',$this->userField->form);
if ($this->userField->form) {
$form = $this->userField->form;
ob_start();
include(VMPATH_ADMIN .'/fields/formrenderer.php');
$body = ob_get_contents();
ob_end_clean();
echo $body;
}
}
}
jExit();
}
}
// pure php no closing tag