setMainTable('customs'); $this->setToggleName('admin_only'); $this->setToggleName('is_hidden'); } /** @return autorized Types of data **/ static function getCustomTypes () { return array('S' => 'COM_VIRTUEMART_CUSTOM_STRING', 'P' => 'COM_VIRTUEMART_CUSTOM_PROPERTY', 'B' => 'COM_VIRTUEMART_CUSTOM_BOOLEAN', 'D' => 'COM_VIRTUEMART_DATE', 'T' => 'COM_VIRTUEMART_TIME', 'M' => 'COM_VIRTUEMART_IMAGE', 'X' => 'COM_VIRTUEMART_CUSTOM_EDITOR', 'Y' => 'COM_VIRTUEMART_CUSTOM_TEXTAREA', 'C' => 'COM_VIRTUEMART_MULTIVARIANT', 'A' => 'COM_VIRTUEMART_CHILD_GENERIC_VARIANT', 'E' => 'COM_VIRTUEMART_CUSTOM_EXTENSION', 'G' => 'COM_VIRTUEMART_CUSTOM_GROUP', 'R'=>'COM_VIRTUEMART_RELATED_PRODUCTS', 'Z'=>'COM_VIRTUEMART_RELATED_CATEGORIES' ); // 'U'=>'COM_VIRTUEMART_CUSTOM_CART_USER_VARIANT', // 'C'=>'COM_VIRTUEMART_CUSTOM_PRODUCT_CHILD', // 'G'=>'COM_VIRTUEMART_CUSTOM_PRODUCT_CHILD_GROUP', // } /** * Gets a single custom by virtuemart_custom_id * . * @param string $type * @param string $mime mime type of custom, use for exampel image * @return customobject */ function getCustom($id = 0){ if(!empty($id)) $this->_id = (int)$id; if(empty($this->_cache[$this->_id])){ $this->_cache[$this->_id] = $this->getTable('customs'); $this->_cache[$this->_id]->load($this->_id); $this->_cache[$this->_id]->_varsToPushParam = self::getVarsToPush($this->_cache[$this->_id]->field_type); $this->_cache[$this->_id]->customfield_params = ''; if ($this->_cache[$this->_id]->field_type == 'E') { vPluginHelper::importPlugin ('vmcustom'); $dispatcher = vDispatcher::getInstance (); $retValue = $dispatcher->trigger ('plgVmDeclarePluginParamsCustomVM3', array(&$this->_cache[$this->_id])); } //exaample vm2 withParent="0"|parentOrderable="0"| // vm3 withParent="1"|parentOrderable="1"| $this->_cache[$this->_id]->_xParams = 'custom_params'; if(!empty($this->_cache[$this->_id]->_varsToPushParam)){ VmTable::bindParameterable($this->_cache[$this->_id],'custom_params',$this->_cache[$this->_id]->_varsToPushParam); } } return $this->_cache[$this->_id]; } /** * Retrieve a list of customs from the database. This is meant only for backend use * * @author Kohl Patrick * @author Max Milbers * @return object List of custom objects */ function getCustoms($custom_parent_id,$search = false){ $query='* FROM `#__virtuemart_customs` '; $where = array(); if($custom_parent_id){ $where[] = ' `custom_parent_id` ='.(int)$custom_parent_id; } if($search){ $db = vFactory::getDbo(); $search = '"%' . $db->escape( $search, true ) . '%"' ; $where[] = ' `custom_title` LIKE '.$search; } if (count ($where) > 0) { $whereString = ' WHERE (' . implode (' AND ', $where) . ') '; } else { $whereString = ''; } $datas = new stdClass(); $datas->items = $this->exeSortSearchListQuery(0, $query, '',$whereString,$this->_getOrdering()); if (!class_exists('VmHTML')) require(VMPATH_ADMIN.DS.'helpers'.DS.'html.php'); $field_types = self::getCustomTypes() ; foreach ($datas->items as $key => & $data) { if (!empty($data->custom_parent_id)){ $g = $this->getCustom($data->custom_parent_id); $data->group_title = $g->custom_title; } else { $data->group_title = '-' ; } if(!empty($field_types[$data->field_type ])){ $data->field_type_display = vmText::_( $field_types[$data->field_type ] ); } else { $data->field_type_display = 'not valid, delete this line'; vmError('The field with id '.$data->virtuemart_custom_id.' and title '.$data->custom_title.' is not longer valid, please delete it from the list'); } } return $datas; } /** * Displays a possibility to select created custom * * @author Max Milbers * @author Patrick Kohl */ public function displayCustomSelection () { $customslist = $this->getParentList (); if (isset($this->virtuemart_custom_id)) { $value = $this->virtuemart_custom_id; } else { $value = vRequest::getInt ('custom_parent_id', 0); } return VmHTML::row ('select', 'COM_VIRTUEMART_CUSTOM_GROUP', 'custom_parent_id', $customslist, $value); } /** * Retrieve a list of layouts from the default and chosen templates directory. * * We may use here the getCustoms function of the custom model or write something simular * * @author Max Milbers * @param name of the view * @return object List of flypage objects */ function getCustomsList ($publishedOnly = FALSE) { // get custom parents $q = 'SELECT `virtuemart_custom_id` AS value ,custom_title AS text FROM `#__virtuemart_customs` WHERE custom_parent_id="0" AND field_type <> "R" AND field_type <> "Z" '; if ($publishedOnly) { $q .= 'AND `published`=1'; } if ($ID = vRequest::getInt ('virtuemart_custom_id', 0)) { $q .= ' AND `virtuemart_custom_id`!=' . (int)$ID; } $db = vFactory::getDbo(); $db->setQuery ($q); $result = $db->loadObjectList (); return $result; } /** * * Enter description here ... * * @param unknown_type $excludedId * @return unknown|multitype: */ function getParentList ($excludedId = 0) { $db = vFactory::getDbo(); $db->setQuery (' SELECT virtuemart_custom_id as value,custom_title as text FROM `#__virtuemart_customs` WHERE `field_type` ="G" and virtuemart_custom_id!=' . $excludedId); return $db->loadObjectList (); } /** * Creates a clone of a given custom id * * @author Max Milbers * @param int $virtuemart_product_id */ public function createClone($id){ $this->virtuemart_custom_id = $id; $row = $this->getTable('customs'); $row->load( $id ); $row->virtuemart_custom_id = 0; $row->custom_title = $row->custom_title.' Copy'; if (!$clone = $row->store()) { vmError('createClone failed for '. $id ); } return $clone; } /* Save and delete from database * all Child product custom_fields relation * @ var $table : the xref table(eg. product,category ...) * @array $data : array of customfields * @int $id : The concerned id (eg. product_id) **/ public function saveChildCustomRelation($table,$datas) { vRequest::vmCheckToken('Invalid token in saveChildCustomRelation'); //Table whitelist $tableWhiteList = array('product','category','manufacturer'); if(!in_array($table,$tableWhiteList)) return false; $db = vFactory::getDbo(); // delete existings from modelXref and table customfields foreach ($datas as $child_id =>$fields) { $fields['virtuemart_'.$table.'_id']=$child_id; $db->setQuery( 'DELETE PC FROM `#__virtuemart_'.$table.'_customfields` as `PC`, `#__virtuemart_customs` as `C` WHERE `PC`.`virtuemart_custom_id` = `C`.`virtuemart_custom_id` AND field_type="C" and virtuemart_'.$table.'_id ='.$child_id ); if(!$db->execute()){ vmError('Error in deleting child relation '); //.$db->getQuery()); Dont give hackers too much info } $tableCustomfields = $this->getTable($table.'_customfields'); $tableCustomfields->bindChecknStore($fields); } } public function store(&$data){ if(!vmAccess::manager('custom.edit')){ vmWarn('Insufficient permission to edit custom'); return false; } if(!empty($data['params'])){ foreach($data['params'] as $k=>$v){ $data[$k] = $v; } } //I think this is obsolete, note by Max if(empty($data['virtuemart_vendor_id'])){ if(!class_exists('VirtueMartModelVendor')) require(VMPATH_ADMIN.DS.'models'.DS.'vendor.php'); $data['virtuemart_vendor_id'] = VirtueMartModelVendor::getLoggedVendor(); } else { $data['virtuemart_vendor_id'] = (int) $data['virtuemart_vendor_id']; } $table = $this->getTable('customs'); if(!empty($data['custom_jplugin_id'])){ $tb = '#__extensions'; $ext_id = 'extension_id'; $db = vFactory::getDbo(); $q = 'SELECT `element` FROM `' . $tb . '` WHERE `' . $ext_id . '` = "'.$data['custom_jplugin_id'].'"'; $db->setQuery($q); $cElement = $db->loadResult(); if(empty($cElement)){ if(!empty($data['virtuemart_custom_id'])){ $table->load($data['virtuemart_custom_id']); $cElement = $table->custom_element; } else if(!empty($data['custom_element'])){ $cElement = $data['custom_element']; } $q = 'SELECT * FROM `' . $tb . '` WHERE `element` = "'.$cElement.'" '; $db->setQuery($q); if($jids=$db->loadAssocList()){ $newJid = 0; foreach($jids as $jid){ $newJid = $jid[$ext_id]; if($jid['enabled'] == 1 and $jid['state'] == 0){ break; } } vmdebug('Available entries ',$newJid,$jids); if(!empty($newJid)){ $q = 'UPDATE `#__virtuemart_customs` SET `custom_jplugin_id`="'.$jid.'" WHERE `custom_jplugin_id` = "'.$data['custom_jplugin_id'].'"'; $db->setQuery($q); $db->execute(); $data['custom_jplugin_id'] = $newJid; vmInfo('Old Plugin id was not available, updated entries with '.$ext_id.' = '.$newJid.' found for the same element'); } } else { vmWarn('could not load custom_element for plugin, testing if current custom_jplugin_id is still available '.$q); } } if(!empty($cElement)){ $data['custom_element'] = $cElement; } $q = 'UPDATE `#__extensions` SET `enabled`= 1, `state` = 0 WHERE `extension_id` = "'.$data['custom_jplugin_id'].'"'; $db->setQuery($q); $db->execute(); } $table->field_type = $data['field_type']; if($table->field_type == 'C'){ //vmInfo(); //$data['is_cart_attribute'] = 1; } $table->custom_element = $data['custom_element']; $table->custom_jplugin_id = $data['custom_jplugin_id']; $table->_xParams = 'custom_params'; if(!empty($data['is_input'])){ if(empty($data['layout_pos'])) $data['layout_pos'] = 'addtocart'; } //We are in the custom and so the table contains the field_type, else not!! self::setParameterableByFieldType($table,$table->field_type); if(empty($data['virtuemart_custom_id']) and !vmAccess::manager('custom.create')){ vmWarn('Insufficient permission to create custom'); return false; } $table->bindChecknStore($data); vPluginHelper::importPlugin('vmcustom'); $dispatcher = vDispatcher::getInstance(); $error = $dispatcher->trigger('plgVmOnStoreInstallPluginTable', array('custom' , $data, $table)); return $table->virtuemart_custom_id ; } /** * Sets the xParams field and $varsToPush to the used table object, * called in the store functions Customfields::storeProductCustomfields and custom store * @param $table * @param $type * @param int $custom_element * @param int $custom_jplugin_id */ static function setParameterableByFieldType(&$table, $type, $custom_element=0,$custom_jplugin_id=0){ //$type = $table->field_type; if($custom_element===0){ $custom_element = $table->custom_element; } if($custom_jplugin_id===0){ $custom_jplugin_id = $table->custom_jplugin_id; } $varsToPush = self::getVarsToPush($type); $xParams = $table->_xParams; if ($type == 'E') { vPluginHelper::importPlugin ('vmcustom'); $dispatcher = vDispatcher::getInstance (); //We call here vmplugin->getTablePluginParams which sets the xParam and the varsToPush of the Plugin vmdebug('setParameterableByFieldType before trigger plgVmGetTablePluginParams ',$custom_element, $custom_jplugin_id, $xParams,$varsToPush); $retValue = $dispatcher->trigger ('plgVmGetTablePluginParams', array('custom',$custom_element, $custom_jplugin_id, &$xParams, &$varsToPush)); } $xParams = $table->_xParams; if(!empty($varsToPush)){ $table->setParameterable($xParams,$varsToPush,TRUE); } } static function getVarsToPush($type){ $varsToPush = 0; if($type=='A'){ $varsToPush = array( 'withParent' => array(0, 'int'), 'parentOrderable' => array(0, 'int'), 'wPrice' => array(0, 'int'), 'browseajax' => array(0, 'int') ); } else if($type=='P'){ $varsToPush = array( 'round' => array('', 'int') ); } else if($type=='C'){ $varsToPush = array( 'usecanonical' => array(0, 'int'), 'showlabels' => array(0, 'int'), 'browseajax' => array(0, 'int'), 'sCustomId' => array(0, 'int', 'scustom'), 'selectType' => array(0, 'int'), 'selectoptions' => array(0, 'int'), 'clabels' => array(0, 'int'), 'options' => array(0, 'int') ); } else if($type=='S' or $type=='B'){ $varsToPush = array( 'addEmpty' => array(0, 'int'), 'selectType' => array(0, 'int') ); } else if($type=='M'){ $varsToPush = array( 'width' => array(VmConfig::get('img_width',90), 'string'), 'height' => array(VmConfig::get('img_width',90), 'string'), 'addEmpty' => array(0, 'int'), 'selectType' => array(1, 'int') ); } else if($type=='R'){ $varsToPush = array( 'wPrice' => array(0, 'int'), 'wImage' => array(1, 'int'), 'wDescr' => array(0, 'int'), 'width' => array(VmConfig::get('img_width',90), 'string'), 'height' => array(VmConfig::get('img_width',90), 'string') ); } else if($type=='Z'){ $varsToPush = array( 'wImage' => array(1, 'int'), 'wDescr' => array(0, 'int'), 'width' => array(VmConfig::get('img_width',90), 'string'), 'height' => array(VmConfig::get('img_width',90), 'string') ); } return $varsToPush; } /** * Delete all record ids selected * * @author Max Milbers * @return boolean True is the delete was successful, false otherwise. */ public function remove($ids) { if(!vmAccess::manager('custom.delete')){ vmWarn('Insufficient permissions to delete custom'); return false; } $table = $this->getTable($this->_maintablename); $customfields = $this->getTable ('product_customfields'); foreach($ids as $id) { if (!$table->delete((int)$id)) { vmError(get_class( $this ).'::remove '.$id.' failed '); return false; } else { //Delete this customfield also in all product_customfield tables if (!$customfields->delete ($id, 'virtuemart_custom_id')) { vmError ('Custom delete Productcustomfield delete failed'); $ok = FALSE; } } } return true; } } // pure php no closing tag