<?php
/**
* @package HikaShop for Joomla!
* @version 1.4.3
* @author hikashop.com
* @copyright (C) 2010 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" cellspacing="1">
<tr>
<td class="key" >
<?php echo JText::_('UPDATE_PRODUCTS'); ?>
</td>
<td>
<?php echo JHTML::_('select.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::_('select.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::_('select.booleanlist', 'textarea_force_publish','',JRequest::getInt('textarea_force_publish','1'));?>
</td>
</tr>
</table>