| Current Path : /home/bijouxly/www/administrator/components/com_virtuemart/models/ |
| Current File : /home/bijouxly/www/administrator/components/com_virtuemart/models/shipmentmethod.php |
<?php
/**
*
* Data module for shipment
*
* @package VirtueMart
* @subpackage Shipment
* @author RickG
* @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: shipmentmethod.php 10462 2021-01-28 17:25:37Z Milbo $
*/
// Check to ensure this file is included in Joomla!
defined('_JEXEC') or die('Restricted access');
/**
* Model class for shop shipment
*
* @package VirtueMart
* @subpackage Shipment
* @author Max Milbers
* @copyright Copyright (c) 2004 - 2021 VirtueMart Team. All rights reserved.
* @license http://www.gnu.org/copyleft/gpl.html GNU/GPL3, 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.
*/
class VirtueMartModelShipmentmethod extends VmModel {
// /** @var integer Primary key */
// var $_id;
/** @var integer Joomla plugin ID */
var $jplugin_id;
/** @var integer Vendor ID */
var $virtuemart_vendor_id;
/**
* constructs a VmModel
* setMainTable defines the maintable of the model
* @author Max Milbers
*/
function __construct() {
parent::__construct();
$this->setMainTable('shipmentmethods');
$this->_validOrderingFieldName = array();
$this->_validOrderingFieldName = array('i.virtuemart_shipmentmethod_id','i.virtuemart_vendor_id',
'l.shipment_name','l.shipment_desc','i.currency_id','i.ordering','i.shared', 'i.published');
$this->_selectedOrdering = 'i.ordering';
$this->setToggleName('shared');
}
/**
* Retrieve the detail record for the current $id if the data has not already been loaded.
*
* @author RickG
*/
function getShipment($id = 0) {
if(!empty($id)) $this->_id = (int)$id;
if (empty($this->_cache[$this->_id])) {
$this->_cache[$this->_id] = $this->getTable('shipmentmethods');
$this->_cache[$this->_id]->load((int)$this->_id);
if(empty($this->_cache[$this->_id]->virtuemart_vendor_id)){
$this->_cache[$this->_id]->virtuemart_vendor_id = vmAccess::getVendorId('shipmentmethod.edit');;
}
$varsToPushParam = $this->_cache[$this->_id]->_varsToPushParam;
if ($this->_cache[$this->_id]->shipment_jplugin_id) {
JPluginHelper::importPlugin ('vmshipment');
$dispatcher = JDispatcher::getInstance ();
$blind = 0;
$retValue = $dispatcher->trigger ('plgVmDeclarePluginParamsShipmentVM3', array(&$this->_cache[$this->_id]));
}
if(empty($this->_cache[$this->_id]->_varsToPushParam)){
$this->_cache[$this->_id]->_varsToPushParam = $varsToPushParam;
} else {
$this->_cache[$this->_id]->_varsToPushParam = array_merge($this->_cache[$this->_id]->_varsToPushParam, $varsToPushParam);
}
if(!empty($this->_cache[$this->_id]->_varsToPushParam)){
VmTable::bindParameterable($this->_cache[$this->_id],'shipment_params',$this->_cache[$this->_id]->_varsToPushParam);
}
//We still need this, because the table is already loaded, but the keys are set later
if($this->_cache[$this->_id]->getCryptedFields()){
if(isset($this->_cache[$this->_id]->modified_on)){
$date = JFactory::getDate($this->_cache[$this->_id]->modified_on);
$date = $date->toUnix();
} else {
$date = 0;
}
foreach($this->_cache[$this->_id]->getCryptedFields() as $field){
if(isset($this->_cache[$this->_id]->{$field})){
$this->_cache[$this->_id]->{$field} = vmCrypt::decrypt($this->_cache[$this->_id]->{$field},$date);
}
}
}
/* Add the shipmentmethod shoppergroups */
$this->_cache[$this->_id]->virtuemart_shoppergroup_ids = $this->getShipmentShopperGrps($this->_id);
}
return $this->_cache[$this->_id];
}
/**
* Retireve a list of shipment from the database.
*
* @author Max Milbers
* @return object List of shipment objects
*/
public function getShipments($onlyPublished=false) {
$where = array();
$langFields = array('shipment_name','shipment_desc');
$select = 'i.*, '.implode(', ',self::joinLangSelectFields($langFields));
$joins = ' FROM `#__virtuemart_shipmentmethods` as i ';
$joins .= implode(' ',self::joinLangTables($this->_maintable,'i','virtuemart_shipmentmethod_id'));
if ($onlyPublished) {
$where[] = ' `published` = 1';
}
$whereString = '';
if (count($where) > 0) $whereString = ' WHERE '.implode(' AND ', $where) ;
$datas = $this->exeSortSearchListQuery(0,$select,$joins,$whereString,' ',$this->_getOrdering() );
if(isset($datas)){
$table = $this->getTable('shipmentmethods');
foreach ($datas as &$data){
$data->virtuemart_shoppergroup_ids = $this->getShipmentShopperGrps($data->virtuemart_shipmentmethod_id);
if(!empty($table->_varsToPushParam)){
VmTable::bindParameterable($data,'shipment_params',$table->_varsToPushParam);
}
}
}
return $datas;
}
public function getShipmentShopperGrps($id){
static $cache = array();
if(!isset($cache[$id])){
$q = 'SELECT `virtuemart_shoppergroup_id` FROM #__virtuemart_shipmentmethod_shoppergroups WHERE `virtuemart_shipmentmethod_id` = "'.(int)$id.'"';
$db = JFactory::getDBO();
$db->setQuery($q);
$cache[$id] = $db->loadColumn();
if(empty($cache[$id])) $cache[$id] = 0;
}
return $cache[$id];
}
/**
* Bind the post data to the shipment tables and save it
*
* @author Max Milbers
* @return boolean True is the save was successful, false otherwise.
*/
public function store(&$data) {
if ($data) {
$data = (array)$data;
}
if(!vmAccess::manager('shipmentmethod.edit')){
vmWarn('Insufficient permissions to store shipmentmethod');
return false;
} else if( empty($data['virtuemart_shipment_id']) and !vmAccess::manager('shipmentmethod.create')){
vmWarn('Insufficient permission to create shipmentmethod');
return false;
}
if(!empty($data['params'])){
foreach($data['params'] as $k=>$v){
$data[$k] = $v;
}
}
if(empty($data['virtuemart_vendor_id'])){
$data['virtuemart_vendor_id'] = vmAccess::isSuperVendor();
} else {
$data['virtuemart_vendor_id'] = (int) $data['virtuemart_vendor_id'];
}
$tb = '#__extensions';
$ext_id = 'extension_id';
$q = 'SELECT `element` FROM `' . $tb . '` WHERE `' . $ext_id . '` = "'.$data['shipment_jplugin_id'].'"';
$db = JFactory::getDBO();
$db->setQuery($q);
$data['shipment_element'] = $db->loadResult();
$table = $this->getTable('shipmentmethods');
$varsToPushParam = $table->_varsToPushParam;
VmConfig::importVMPlugins('vmshipment');
if(isset($data['shipment_jplugin_id'])){
$q = 'UPDATE `#__extensions` SET `enabled`= 1 WHERE `extension_id` = "'.$data['shipment_jplugin_id'].'"';
$db->setQuery($q);
$db->execute();
$dispatcher = JDispatcher::getInstance();
//bad trigger, we should just give it data, so that the plugins itself can check the data to be stored
//so this trigger is now deprecated and will be deleted in vm2.2
$retValue = $dispatcher->trigger('plgVmSetOnTablePluginParamsShipment',array( $data['shipment_element'],$data['shipment_jplugin_id'],&$table));
$retValue = $dispatcher->trigger('plgVmSetOnTablePluginShipment',array( &$data,&$table));
}
if(empty($table->_varsToPushParam)){
$table->_varsToPushParam = $varsToPushParam;
} else {
$table->_varsToPushParam = array_merge($table->_varsToPushParam, $varsToPushParam);
}
$table->bindChecknStore($data);
$xrefTable = $this->getTable('shipmentmethod_shoppergroups');
$xrefTable->bindChecknStore($data);
VmPlugin::directTrigger('vmshipment', $data['shipment_element'], 'OnStoreInstallPluginTable', array($data['shipment_jplugin_id']));
return $table->virtuemart_shipmentmethod_id;
}
/**
* Creates a clone of a given shipmentmethod id
*
* @author Valérie Isaksen
* @param int $virtuemart_shipmentmethod_id
*/
public function createClone ($id) {
if(!vmAccess::manager('shipmentmethod.create')){
vmWarn('Insufficient permissions to store shipmentmethod');
return false;
}
$this->setId ($id);
$shipment = $this->getShipment();
$shipment->virtuemart_shipmentmethod_id = 0;
$shipment->shipment_name = $shipment->shipment_name.' Copy';
$clone = $this->store($shipment);
return $clone;
}
function remove($ids){
if(!vmAccess::manager('shipmentmethod.delete')){
vmWarn('Insufficient permissions to remove shipmentmethod');
return false;
}
return parent::remove($ids);
}
}
//no closing tag