Exemplo n.º 1
0
 /**
  * constructs a VmModel
  * setMainTable defines the maintable of the model
  * @author Max Milbers
  */
 function __construct()
 {
     parent::__construct('virtuemart_userfield_id');
     $this->setMainTable('userfields');
     $this->setToggleName('required');
     $this->setToggleName('cart');
     $this->setToggleName('shipment');
     $this->setToggleName('account');
     // Instantiate the Helper class
     self::$_cache_ordered = null;
     self::$_cache_named = array();
     $this->_selectedOrdering = 'ordering';
     $this->_selectedOrderingDir = 'ASC';
     VmConfig::loadJLang('com_virtuemart_shoppers', TRUE);
 }
Exemplo n.º 2
0
 /**
  * constructs a VmModel
  * setMainTable defines the maintable of the model
  * @author Max Milbers
  */
 function __construct()
 {
     parent::__construct('virtuemart_userfield_id');
     $this->setMainTable('userfields');
     $this->setToggleName('required');
     $this->setToggleName('registration');
     $this->setToggleName('shipment');
     $this->setToggleName('account');
     // Instantiate the Helper class
     $this->_params = new ParamHelper();
     self::$_cache_ordered = null;
     self::$_cache_named = array();
     // Form fields that must be translated to parameters
     $this->reqParam = array('age_verification' => 'minimum_age', 'euvatid' => 'virtuemart_shoppergroup_id', 'webaddress' => 'webaddresstype');
     $this->_selectedOrdering = 'ordering';
     $this->_selectedOrderingDir = 'ASC';
 }