106 lines
3.7 KiB
PHP
106 lines
3.7 KiB
PHP
|
<?php
|
||
|
/*
|
||
|
* 2007-2011 PrestaShop
|
||
|
*
|
||
|
* NOTICE OF LICENSE
|
||
|
*
|
||
|
* This source file is subject to the Open Software License (OSL 3.0)
|
||
|
* that is bundled with this package in the file LICENSE.txt.
|
||
|
* It is also available through the world-wide-web at this URL:
|
||
|
* http://opensource.org/licenses/osl-3.0.php
|
||
|
* If you did not receive a copy of the license and are unable to
|
||
|
* obtain it through the world-wide-web, please send an email
|
||
|
* to license@prestashop.com so we can send you a copy immediately.
|
||
|
*
|
||
|
* DISCLAIMER
|
||
|
*
|
||
|
* Do not edit or add to this file if you wish to upgrade PrestaShop to newer
|
||
|
* versions in the future. If you wish to customize PrestaShop for your
|
||
|
* needs please refer to http://www.prestashop.com for more information.
|
||
|
*
|
||
|
* @author PrestaShop SA <contact@prestashop.com>
|
||
|
* @copyright 2007-2011 PrestaShop SA
|
||
|
* @version Release: $Revision: 7690 $
|
||
|
* @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
|
||
|
* International Registered Trademark & Property of PrestaShop SA
|
||
|
*/
|
||
|
|
||
|
class AdminAliases extends AdminTab
|
||
|
{
|
||
|
function __construct()
|
||
|
{
|
||
|
$this->table = 'alias';
|
||
|
$this->className = 'Alias';
|
||
|
$this->edit = true;
|
||
|
$this->delete = true;
|
||
|
|
||
|
$this->fieldsDisplay = array(
|
||
|
'alias' => array('title' => $this->l('Aliases'), 'width' => 160),
|
||
|
'search' => array('title' => $this->l('Search'), 'width' => 40),
|
||
|
'active' => array('title' => $this->l('Status'), 'align' => 'center', 'active' => 'status', 'type' => 'bool', 'orderby' => false)
|
||
|
);
|
||
|
parent::__construct();
|
||
|
}
|
||
|
|
||
|
public function postProcess()
|
||
|
{
|
||
|
if (isset($_POST['submitAdd'.$this->table]))
|
||
|
{
|
||
|
$search = strval(Tools::getValue('search'));
|
||
|
$string = strval(Tools::getValue('alias'));
|
||
|
$aliases = explode(',', $string);
|
||
|
if (empty($search) OR empty($string))
|
||
|
$this->_errors[] = $this->l('aliases and result are both required');
|
||
|
if (!Validate::isValidSearch($search))
|
||
|
$this->_errors[] = $search.' '.$this->l('is not a valid result');
|
||
|
foreach ($aliases AS $alias)
|
||
|
if (!Validate::isValidSearch($alias))
|
||
|
$this->_errors[] = $alias.' '.$this->l('is not a valid alias');
|
||
|
|
||
|
if (!sizeof($this->_errors))
|
||
|
{
|
||
|
foreach ($aliases AS $alias)
|
||
|
{
|
||
|
$obj = new Alias(NULL, trim($alias), trim($search));
|
||
|
$obj->save();
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
else
|
||
|
parent::postProcess();
|
||
|
}
|
||
|
|
||
|
public function displayForm($isMainTab = true)
|
||
|
{
|
||
|
global $currentIndex;
|
||
|
parent::displayForm();
|
||
|
|
||
|
if (!($obj = $this->loadObject(true)))
|
||
|
return;
|
||
|
|
||
|
echo '
|
||
|
<form action="'.$currentIndex.'&submitAdd'.$this->table.'=1&token='.$this->token.'" method="post">
|
||
|
'.($obj->id ? '<input type="hidden" name="id_'.$this->table.'" value="'.$obj->id.'" />' : '').'
|
||
|
<fieldset><legend><img src="../img/admin/search.gif" />'.$this->l('Aliases').'</legend>
|
||
|
<label>'.$this->l('Alias:').' </label>
|
||
|
<div class="margin-form">
|
||
|
<input type="text" size="40" name="alias" value="'.Tools::getValue('alias', htmlentities($obj->getAliases(), ENT_COMPAT, 'UTF-8')).'" /> <sup>*</sup>
|
||
|
<p class="clear">'.$this->l('Enter each alias separated by a comma (\',\')').' '.$this->l('(e.g., \'prestshop,preztashop,prestasohp\')').'<br />
|
||
|
'.$this->l('Forbidden characters:').' <>;=#{}</p>
|
||
|
</div>
|
||
|
<label>'.$this->l('Result:').' </label>
|
||
|
<div class="margin-form">
|
||
|
<input type="text" size="15" name="search" value="'.htmlentities($this->getFieldValue($obj, 'search'), ENT_COMPAT, 'UTF-8').'" /> <sup>*</sup>
|
||
|
<p class="clear">'.$this->l('Search this word instead.').'</p>
|
||
|
</div>
|
||
|
<div class="margin-form">
|
||
|
<input type="submit" value="'.$this->l(' Save ').'" name="submitAdd'.$this->table.'" class="button" />
|
||
|
</div>
|
||
|
<div class="small"><sup>*</sup> '.$this->l('Required field').'</div>
|
||
|
</fieldset>
|
||
|
</form>';
|
||
|
}
|
||
|
}
|
||
|
|
||
|
|