Spade
Mini Shell
| Directory:~$ /home/lmsyaran/public_html/administrator/components/com_hikashop/views/import/tmpl/ |
| [Home] [System Details] [Kill Me] |
<?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');
?><textarea style="width:100%" rows="20"
name="textareaentries">
<?php $text = JRequest::getString("textareaentries");
if(empty($text)){ ?>
product_name,price_value,price_currency_id
Bread,1.20,EUR
Coffee,2,USD
<?php }else echo $text?>
</textarea>
<table class="admintable table" cellspacing="1">
<tr>
<td class="key" >
<?php echo JText::_('UPDATE_PRODUCTS'); ?>
</td>
<td>
<?php echo JHTML::_('hikaselect.booleanlist',
'textarea_update_products','',JRequest::getInt('textarea_update_products','1'));?>
</td>
</tr>
<tr>
<td class="key" >
<?php echo JText::_('CREATE_CATEGORIES'); ?>
</td>
<td>
<?php echo JHTML::_('hikaselect.booleanlist',
'textarea_create_categories','',JRequest::getInt('textarea_create_categories','1'));?>
</td>
</tr>
<tr>
<td class="key" >
<?php echo JText::_('FORCE_PUBLISH'); ?>
</td>
<td>
<?php echo JHTML::_('hikaselect.booleanlist',
'textarea_force_publish','',JRequest::getInt('textarea_force_publish','1'));?>
</td>
</tr>
</table>