Spade

Mini Shell

Directory:~$ /home/lmsyaran/www/administrator/components/com_phocacart/models/
Upload File

[Home] [System Details] [Kill Me]
Current File:~$ /home/lmsyaran/www/administrator/components/com_phocacart/models/phocacartshipping.php

<?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 PhocaCartCpModelPhocacartShipping extends JModelAdmin
{
	protected	$option 		= 'com_phocacart';
	protected 	$text_prefix	= 'com_phocacart';

	protected function canDelete($record) {
		return parent::canDelete($record);
	}

	protected function canEditState($record) {
		return parent::canEditState($record);
	}

	public function getTable($type = 'PhocacartShipping', $prefix =
'Table', $config = array()) {
		return JTable::getInstance($type, $prefix, $config);
	}

	public function getForm($data = array(), $loadData = true) {
		$app	= JFactory::getApplication();
		$form 	= $this->loadForm('com_phocacart.phocacartshipping',
'phocacartshipping', array('control' =>
'jform', 'load_data' => $loadData));
		if (empty($form)) {
			return false;
		}
		return $form;
	}

	protected function loadFormData() {
		$data =
JFactory::getApplication()->getUserState('com_phocacart.edit.phocacartshipping.data',
array());
		if (empty($data)) {
			$data = $this->getItem();
			$price = new PhocacartPrice();
			$data->cost 			= $price->cleanPrice($data->cost);
			$data->cost_additional =
$price->cleanPrice($data->cost_additional);
		}
		return $data;
	}

	protected function prepareTable($table) {
		jimport('joomla.filter.output');
		$date = JFactory::getDate();
		$user = JFactory::getUser();

		$table->title		= htmlspecialchars_decode($table->title,
ENT_QUOTES);
		$table->alias		= JApplicationHelper::stringURLSafe($table->alias);

		$table->cost 			=
PhocacartUtils::replaceCommaWithPoint($table->cost);
		$table->cost_additional	=
PhocacartUtils::replaceCommaWithPoint($table->cost_additional);
		$table->lowest_weight 	=
PhocacartUtils::replaceCommaWithPoint($table->lowest_weight);
		$table->highest_weight 	=
PhocacartUtils::replaceCommaWithPoint($table->highest_weight);
		$table->lowest_volume 	=
PhocacartUtils::replaceCommaWithPoint($table->lowest_volume);
		$table->highest_volume 	=
PhocacartUtils::replaceCommaWithPoint($table->highest_volume);
		$table->lowest_amount 	=
PhocacartUtils::replaceCommaWithPoint($table->lowest_amount);
		$table->highest_amount 	=
PhocacartUtils::replaceCommaWithPoint($table->highest_amount);
		$table->maximal_width 	=
PhocacartUtils::replaceCommaWithPoint($table->maximal_width);
		$table->maximal_height 	=
PhocacartUtils::replaceCommaWithPoint($table->maximal_height);
		$table->maximal_length 	=
PhocacartUtils::replaceCommaWithPoint($table->maximal_length);
        $table->minimal_width 	=
PhocacartUtils::replaceCommaWithPoint($table->minimal_width);
        $table->minimal_height 	=
PhocacartUtils::replaceCommaWithPoint($table->minimal_height);
        $table->minimal_length 	=
PhocacartUtils::replaceCommaWithPoint($table->minimal_length);
		$table->minimal_quantity=
PhocacartUtils::replaceCommaWithPoint($table->minimal_quantity);
		$table->maximal_quantity=
PhocacartUtils::replaceCommaWithPoint($table->maximal_quantity);


		if (empty($table->alias)) {
			$table->alias = JApplicationHelper::stringURLSafe($table->title);
		}

		$table->tax_id 	= PhocacartUtils::getIntFromString($table->tax_id);

		if (empty($table->id)) {
			// Set the values
			//$table->created	= $date->toSql();

			// Set ordering to the last item if not set
			if (empty($table->ordering)) {
				$db = JFactory::getDbo();
				$db->setQuery('SELECT MAX(ordering) FROM
#__phocacart_shipping_methods');
				$max = $db->loadResult();

				$table->ordering = $max+1;
			}
		}
		else {
			// Set the values
			//$table->modified	= $date->toSql();
			//$table->modified_by	= $user->get('id');
		}
	}

	public function save($data)
	{
		//$dispatcher = J EventDispatcher::getInstance();
		$table = $this->getTable();

		if ((!empty($data['tags']) &&
$data['tags'][0] != ''))
		{
			$table->newTags = $data['tags'];
		}

		$key = $table->getKeyName();
		$pk = (!empty($data[$key])) ? $data[$key] : (int)
$this->getState($this->getName() . '.id');
		$isNew = true;

		// Include the content plugins for the on save events.
		JPluginHelper::importPlugin('content');

		// Allow an exception to be thrown.
		try
		{
			// Load the row if saving an existing record.
			if ($pk > 0)
			{
				$table->load($pk);
				$isNew = false;
			}

			// Plugin parameters are converted to params column in shipping table
(x001)
			// Store form parameters of selected method
			$app			= JFactory::getApplication();
			$dataPh			= $app->input->get('phform', array(),
'array');
			if (!empty($dataPh['params'])) {
				$registry 	= new JRegistry($dataPh['params']);
				//$registry 	= new JRegistry($dataPh);
				$dataPhNew 	= $registry->toString();
				if($dataPhNew != '') {
					$data['params'] = $dataPhNew;
				}
			} else {
				$data['params'] = '';
			}

			// Bind the data.
			if (!$table->bind($data))
			{
				$this->setError($table->getError());

				return false;
			}

			// Prepare the row for saving
			$this->prepareTable($table);

			// Check the data.
			if (!$table->check())
			{
				$this->setError($table->getError());
				return false;
			}

			// Trigger the onContentBeforeSave event.
			$result =
\JFactory::getApplication()->triggerEvent($this->event_before_save,
array($this->option . '.' . $this->name, $table, $isNew,
$data));

			if (in_array(false, $result, true))
			{
				$this->setError($table->getError());
				return false;
			}

			// Store the data.
			if (!$table->store())
			{
				$this->setError($table->getError());
				return false;
			}

			if ((int)$table->id > 0) {

				if (!isset($data['zone'])) { $data['zone'] =
array();}
				PhocacartZone::storeZones($data['zone'], (int)$table->id);

				if (!isset($data['country'])) {$data['country'] =
array();}
				PhocacartCountry::storeCountries($data['country'],
(int)$table->id);

				if (!isset($data['region'])) {$data['region'] =
array();}
				PhocacartRegion::storeRegions($data['region'],
(int)$table->id);

				if (!isset($data['group'])) {$data['group'] =
array();}
				PhocacartGroup::storeGroupsById((int)$table->id, 7,
$data['group']);


			}

			// Clean the cache.
			$this->cleanCache();

			// Trigger the onContentAfterSave event.
			\JFactory::getApplication()->triggerEvent($this->event_after_save,
array($this->option . '.' . $this->name, $table, $isNew));
		}
		catch (Exception $e)
		{
			$this->setError($e->getMessage());

			return false;
		}

		$pkName = $table->getKeyName();

		if (isset($table->$pkName))
		{
			$this->setState($this->getName() . '.id',
$table->$pkName);
		}
		$this->setState($this->getName() . '.new', $isNew);

		return true;
	}

	public function delete(&$cid = array()) {

		if (count( $cid )) {
			$delete = parent::delete($cid);
			if ($delete) {

				\Joomla\Utilities\ArrayHelper::toInteger($cid);
				$cids = implode( ',', $cid );

				$query = 'DELETE FROM #__phocacart_item_groups'
				. ' WHERE item_id IN ( '.$cids.' )'
				. ' AND type = 7';
				$this->_db->setQuery( $query );
				$this->_db->execute();
			}
		}
	}


	public function setDefault($id = 0) {

		$user = JFactory::getUser();
		$db   = $this->getDbo();

		if (!$user->authorise('core.edit.state',
'com_phocacart')) {
			throw new
Exception(JText::_('JLIB_APPLICATION_ERROR_EDITSTATE_NOT_PERMITTED'));
		}

		$table = $this->getTable();

		if (!$table->load((int) $id)){
			throw new
Exception(JText::_('COM_PHOCACART_ERROR_TABLE_NOT_FOUND'));
		}

		$db->setQuery("UPDATE #__phocacart_shipping_methods SET
".$db->quoteName('default')." =
'0'");
		$db->execute();

		$db->setQuery("UPDATE #__phocacart_shipping_methods SET
".$db->quoteName('default')." = '1' WHERE
id = " . (int) $id);
		$db->execute();

		$this->cleanCache();

		return true;
	}

	public function unsetDefault($id = 0) {

		$user = JFactory::getUser();
		$db   = $this->getDbo();

		if (!$user->authorise('core.edit.state',
'com_phocacart')) {
			throw new
Exception(JText::_('JLIB_APPLICATION_ERROR_EDITSTATE_NOT_PERMITTED'));
		}

		$table = $this->getTable();

		if (!$table->load((int) $id)){
			throw new
Exception(JText::_('COM_PHOCACART_ERROR_TABLE_NOT_FOUND'));
		}

		// It is possible that nothing will be set as default
		$db->setQuery("UPDATE #__phocacart_shipping_methods SET
".$db->quoteName('default')." = '0' WHERE
id = " . (int)$id);
		$db->execute();

		$this->cleanCache();

		return true;
	}
}
?>