93 lines
4.0 KiB
PHP
93 lines
4.0 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: 6594 $
|
||
|
* @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
|
||
|
* International Registered Trademark & Property of PrestaShop SA
|
||
|
*/
|
||
|
|
||
|
class AdminQuickAccesses extends AdminTab
|
||
|
{
|
||
|
public function __construct()
|
||
|
{
|
||
|
$this->table = 'quick_access';
|
||
|
$this->className = 'QuickAccess';
|
||
|
$this->lang = true;
|
||
|
$this->edit = true;
|
||
|
$this->delete = true;
|
||
|
|
||
|
$this->fieldsDisplay = array(
|
||
|
'id_quick_access' => array('title' => $this->l('ID'), 'align' => 'center', 'width' => 25),
|
||
|
'name' => array('title' => $this->l('Name'), 'width' => 200),
|
||
|
'link' => array('title' => $this->l('Link'), 'width' => 300),
|
||
|
'new_window' => array('title' => $this->l('New window'), 'align' => 'center', 'type' => 'bool', 'activeVisu' => 'new_window'));
|
||
|
|
||
|
parent::__construct();
|
||
|
}
|
||
|
|
||
|
public function displayForm($isMainTab = true)
|
||
|
{
|
||
|
global $currentIndex;
|
||
|
parent::displayForm();
|
||
|
|
||
|
if (!($obj = $this->loadObject(true)))
|
||
|
return;
|
||
|
$new_window = $this->getFieldValue($obj, 'new_window');
|
||
|
|
||
|
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/quick.gif" />'.$this->l('Quick Access menu').'</legend>
|
||
|
<label>'.$this->l('Name:').' </label>
|
||
|
<div class="margin-form">';
|
||
|
foreach ($this->_languages as $language)
|
||
|
echo '
|
||
|
<div id="name_'.$language['id_lang'].'" style="display: '.($language['id_lang'] == $this->_defaultFormLanguage ? 'block' : 'none').'; float: left;">
|
||
|
<input size="33" type="text" name="name_'.$language['id_lang'].'" value="'.htmlentities($this->getFieldValue($obj, 'name', (int)($language['id_lang'])), ENT_COMPAT, 'UTF-8').'" /><sup> *</sup>
|
||
|
<span class="hint" name="help_box">'.$this->l('Forbidden characters:').' <>;=#{}<span class="hint-pointer"> </span></span>
|
||
|
</div>';
|
||
|
$this->displayFlags($this->_languages, $this->_defaultFormLanguage, 'name', 'name');
|
||
|
echo '
|
||
|
<div class="clear"></div>
|
||
|
</div>
|
||
|
<label>'.$this->l('URL:').' </label>
|
||
|
<div class="margin-form">
|
||
|
<input type="text" size="60" maxlength="128" name="link" value="'.htmlentities($this->getFieldValue($obj, 'link'), ENT_COMPAT, 'UTF-8').'" /> <sup>*</sup>
|
||
|
</div>
|
||
|
<label>'.$this->l('Open in new window:').' </label>
|
||
|
<div class="margin-form">
|
||
|
<input type="radio" name="new_window" id="new_window_on" value="1" '.($new_window ? 'checked="checked" ' : '').'/>
|
||
|
<label class="t" for="new_window_on"><img src="../img/admin/enabled.gif" alt="'.$this->l('Enabled').'" title="'.$this->l('Yes').'" /></label>
|
||
|
<input type="radio" name="new_window" id="new_window_off" value="0" '.(!$new_window ? 'checked="checked" ' : '').'/>
|
||
|
<label class="t" for="new_window_off"><img src="../img/admin/disabled.gif" alt="'.$this->l('Disabled').'" title="'.$this->l('No').'" /></label>
|
||
|
</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>';
|
||
|
}
|
||
|
}
|
||
|
|
||
|
|