Spade

Mini Shell

Directory:~$ /home/lmsyaran/public_html/j3/components/com_hikashop/views/address/tmpl/
Upload File

[Home] [System Details] [Kill Me]
Current File:~$ /home/lmsyaran/public_html/j3/components/com_hikashop/views/address/tmpl/listing.php

<?php
/**
 * @package	HikaShop for Joomla!
 * @version	2.2.3
 * @author	hikashop.com
 * @copyright	(C) 2010-2013 HIKARI SOFTWARE. All rights reserved.
 * @license	GNU/GPLv3 http://www.gnu.org/licenses/gpl-3.0.html
 */
defined('_JEXEC') or die('Restricted access');
?><div id="hikashop_address_listing">
<?php if($this->user_id){ ?>
<fieldset>
	<div class="header
hikashop_header_title"><h1><?php echo
JText::_('ADDRESSES');?></h1></div>
	<div class="toolbar hikashop_header_buttons"
id="toolbar" >
		<table>
			<tr>
				<td>
					<?php echo $this->popup->display(
							'<span class="icon-32-new" title="'.
JText::_('HIKA_NEW').'"></span>'.
JText::_('HIKA_NEW'),
							'HIKA_NEW',
							hikashop_completeLink('address&task=add',true),
							'hikashop_new_address_popup',
							760, 480, '', '', 'link'
						); ?>
				</td>
				<td>
					<a href="<?php echo
hikashop_completeLink('user');?>" >
						<span class="icon-32-back" title="<?php echo
JText::_('HIKA_BACK'); ?>">
						</span>
						<?php echo JText::_('HIKA_BACK'); ?>
					</a>
				</td>
			</tr>
		</table>
	</div>
</fieldset>
<?php
	if(!empty($this->addresses)){
?>
<div class="hikashop_address_listing_div">
<form action="index.php?option=<?php echo HIKASHOP_COMPONENT;
?>&amp;ctrl=<?php echo JRequest::getCmd('ctrl');
?>" method="post">
<table class="hikashop_address_listing_table">
<?php
		foreach($this->addresses as $address){
			$this->address =& $address;
	?>
	<tr class="hikashop_address_listing_item">
		<td class="hikashop_address_listing_item_default">
			<input type="radio" name="address_default"
value="<?php echo
$this->address->address_id;?>"<?php
				if($this->address->address_default == 1) {
					echo ' checked="checked"';
				}
			?> onclick="this.form.submit();"/>
		</td>
		<td class="hikashop_address_listing_item_details">
			<span>
	<?php
			$this->setLayout('address_template');
			$html = $this->loadTemplate();
			foreach($this->fields as $field){
				$fieldname = $field->field_namekey;
				if(!empty($address->$fieldname))
$html=str_replace('{'.$fieldname.'}',$this->fieldsClass->show($field,@$address->$fieldname),$html);
			}
			echo
str_replace("\n","<br/>\n",str_replace("\n\n","\n",preg_replace('#{(?:(?!}).)*}#i','',$html)));
	?>
			</span>
		</td>
		<td class="hikashop_address_listing_item_actions">
			<?php global $Itemid; ?>
			<a href="<?php echo
hikashop_completeLink('address&task=delete&address_id='.$address->address_id.'&'.hikashop_getFormToken().'=1&Itemid='.$Itemid);?>"
title="<?php echo JText::_('HIKA_DELETE');
?>"><img src="<?php echo HIKASHOP_IMAGES;
?>delete.png" alt="<?php echo
JText::_('HIKA_DELETE'); ?>" /></a>
			<?php echo $this->popup->display(
				'<img src="'. HIKASHOP_IMAGES.'edit.png"
alt="'. JText::_('HIKA_EDIT').'"
/>',
				'HIKA_EDIT',
				hikashop_completeLink('address&task=edit&address_id='.$address->address_id.'&Itemid='.$Itemid,true),
				'hikashop_edit_address_popup_'.$address->address_id,
				760, 480, '', '', 'link'
			); ?>
		</td>
	</tr>
	<?php
		}
?>
</table>
	<input type="hidden" name="option"
value="<?php echo HIKASHOP_COMPONENT; ?>" />
	<input type="hidden" name="ctrl"
value="<?php echo JRequest::getCmd('ctrl'); ?>"
/>
	<input type="hidden" name="task"
value="setdefault" />
	<?php echo JHTML::_('form.token'); ?>
</form>
</div>
<?php
	}
}
?>
</div>
<div class="clear_both"></div>