Spade

Mini Shell

Directory:~$ /home/lmsyaran/www/administrator/components/com_phocacart/views/phocacartedittax/tmpl/
Upload File

[Home] [System Details] [Kill Me]
Current File:~$ /home/lmsyaran/www/administrator/components/com_phocacart/views/phocacartedittax/tmpl/default.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
 * @component Phoca Cart
 * @copyright Copyright (C) Jan Pavelka www.phoca.cz
 * @license http://www.gnu.org/copyleft/gpl.html GNU/GPL
 */
defined('_JEXEC') or die();

Joomla\CMS\HTML\HTMLHelper::_('bootstrap.tooltip');
Joomla\CMS\HTML\HTMLHelper::_('behavior.multiselect');
Joomla\CMS\HTML\HTMLHelper::_('dropdown.init');
Joomla\CMS\HTML\HTMLHelper::_('formbehavior.chosen',
'select');
jimport( 'joomla.filesystem.folder' ); 
jimport( 'joomla.filesystem.file' );


$link	= JRoute::_(
'index.php?option='.$this->t['o'].'&view=phocacartedittax&tmpl=component&id='.(int)$this->id);

if (isset($this->item->id) && (int)$this->item->id >
0 && isset($this->item->title) &&
$this->item->title != '') {
	
	$flag = '';
	if (isset($this->item->code2) && $this->item->code2 !=
'') {
		$flag = PhocacartCountry::getCountryFlag($this->item->code2, 0,
$this->item->image, '20px'); 
	}

	echo '<h1 class="ph-modal-header">'.$flag
.' '.$this->item->title.'</h1>';

	echo '<form action="'.$link.'"
method="post">';
	
	//echo '<table class="ph-tax-edit">';
	echo '<div class="row-fluid
ph-tax-edit-header">';
	echo '<div class="span4 col-sm-4
col-md-4">'.JText::_('COM_PHOCACART_TAX_NAME').'</div>';
	echo '<div class="span2 col-sm-2
col-md-2">'.JText::_('COM_PHOCACART_TAX_RATE').'</div>';
	echo '<div class="span2 col-sm-2
col-md-2">'.JText::_('COM_PHOCACART_TITLE').'</div>';
	echo '<div class="span2 col-sm-2
col-md-2">'.JText::_('COM_PHOCACART_ALIAS').'</div>';
	echo '<div class="span2 col-sm-2 col-md-2">'.
($this->type == 2 ? JText::_('COM_PHOCACART_TAX_RATE_REGION')
:
JText::_('COM_PHOCACART_TAX_RATE_COUNTRY')).'</div>';
	echo '</div>';
	
	if (!empty($this->itemcountrytax)) {
		foreach($this->itemcountrytax as $k => $v) {
			echo '<div class="row-fluid
ph-tax-edit-item">';
			echo '<div class="span4 col-sm-4
col-md-4">'.JText::_($v->title).'</div>';
			echo '<div class="span2 col-sm-2
col-md-2">'.PhocacartPrice::cleanPrice($v->tax_rate).'</div>';
			
			echo '<div class="span2 col-sm-2 col-md-2">';
			
			echo '<input class="input-small input-sm"
type="text"
name="jform['.(int)$v->id.'][title]"
value="'.htmlspecialchars($v->tcr_title).'">';
			echo '<input type="hidden"
name="jform['.(int)$v->id.'][tax_id]"
value="'.(int)$v->id.'">';
			echo '</div>';
			
			echo '<div class="span2 col-sm-2
col-md-2"><input class="input-small input-sm"
type="text"
name="jform['.(int)$v->id.'][alias]"
value="'.htmlspecialchars($v->tcr_alias).'"></div>';
			
			// cleanPrice method add 0 to empty values which is wrong in this case
as we have:
			// VAT = 0 (valid VAT)
			// VAT = '' (vat not set)
			$tcTaxRate  = '';
			if ($v->tcr_tax_rate != '') {
				$tcTaxRate = PhocacartPrice::cleanPrice($v->tcr_tax_rate);
			}
			if ($v->tcr_tax_rate == -1) {
				$tcTaxRate = '';// -1 means, it was not active but we still
hold the ID of such tax for comparison in reports
			}
			echo '<div class="span2 col-sm-2
col-md-2"><input class="input-small input-sm"
type="text"
name="jform['.(int)$v->id.'][tax_rate]"
value="'.htmlspecialchars($tcTaxRate).'"></div>';
			echo '</div>';
			
		}
	}
	//echo '</table>';
	


	
	
	echo '<input type="hidden" name="jform[id]"
value="'.(int)$this->id.'">';
	echo '<input type="hidden" name="jform[type]"
value="'.(int)$this->type.'">';
	echo '<input type="hidden" name="task"
value="phocacartedittax.edittax">';
	echo '<input type="hidden" name="tmpl"
value="component" />';
	echo '<input type="hidden" name="option"
value="com_phocacart" />';
	echo '<div class="ph-tax-edit-button"><button
class="btn btn-success btn-sm ph-btn"><span
class="icon-edit"></span>
'.JText::_('COM_PHOCACART_SAVE').'</button></div>';

	echo Joomla\CMS\HTML\HTMLHelper::_('form.token');
	echo '</form>';
}



echo '<p>&nbsp;</p>';

echo '<form action="'.$link.'"
method="post">';
echo '<input type="hidden" name="jform[id]"
value="'.(int)$this->id.'">';
echo '<input type="hidden" name="jform[type]"
value="'.(int)$this->type.'">';
echo '<input type="hidden" name="task"
value="phocacartedittax.emptyinformation">';
echo '<input type="hidden" name="tmpl"
value="component" />';
echo '<input type="hidden" name="option"
value="com_phocacart" />';
echo '<button class="btn btn-primary btn-sm
ph-btn"><span class="icon-delete"></span>
'.JText::_('COM_PHOCACART_EMPTY_TAX_INFORMATION').'</button>';
echo '</div>';
echo Joomla\CMS\HTML\HTMLHelper::_('form.token');
echo '</form>';

	
?>