635 lines
18 KiB
PHP
635 lines
18 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: 7307 $
|
|
* @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
|
|
* International Registered Trademark & Property of PrestaShop SA
|
|
*/
|
|
|
|
class AdminAttributesGroupsControllerCore extends AdminController
|
|
{
|
|
public function __construct()
|
|
{
|
|
$this->context = Context::getContext();
|
|
$this->table = 'attribute_group';
|
|
$this->identifier = 'id_attribute_group';
|
|
$this->className = 'AttributeGroup';
|
|
$this->lang = true;
|
|
$this->_defaultOrderBy = 'position';
|
|
|
|
$this->fieldsDisplay = array(
|
|
'id_attribute_group' => array(
|
|
'title' => $this->l('ID'),
|
|
'width' => 25,
|
|
'align' => 'center'
|
|
),
|
|
'name' => array(
|
|
'title' => $this->l('Name'),
|
|
'width' => 'auto',
|
|
'filter_key' => 'b!name',
|
|
'align' => 'left'
|
|
),
|
|
'position' => array(
|
|
'title' => $this->l('Position'),
|
|
'width' => 40,
|
|
'filter_key' => 'cp!position',
|
|
'position' => 'position',
|
|
'align' => 'center'
|
|
)
|
|
);
|
|
|
|
$this->bulk_actions = array('delete' => array('text' => $this->l('Delete selected'), 'confirm' => $this->l('Delete selected items?')));
|
|
|
|
parent::__construct();
|
|
}
|
|
|
|
/**
|
|
* AdminController::renderList() override
|
|
* @see AdminController::renderList()
|
|
*/
|
|
public function renderList()
|
|
{
|
|
$this->addRowAction('edit');
|
|
$this->addRowAction('delete');
|
|
$this->addRowAction('details');
|
|
|
|
return parent::renderList();
|
|
}
|
|
|
|
/**
|
|
* method call when ajax request is made with the details row action
|
|
* @see AdminController::postProcess()
|
|
*/
|
|
public function ajaxProcessDetails()
|
|
{
|
|
if (($id = Tools::getValue('id')))
|
|
{
|
|
$this->table = 'attribute';
|
|
$this->className = 'Attribute';
|
|
$this->identifier = 'id_attribute';
|
|
$this->lang = true;
|
|
|
|
if (!Validate::isLoadedObject($obj = new AttributeGroup((int)$id)))
|
|
$this->errors[] = Tools::displayError('An error occurred while updating status for object.').' <b>'.$this->table.'</b> '.Tools::displayError('(cannot load object)');
|
|
|
|
$this->fieldsDisplay = array(
|
|
'id_attribute' => array(
|
|
'title' => $this->l('ID'),
|
|
'width' => 25
|
|
),
|
|
'name' => array(
|
|
'title' => $this->l('Name'),
|
|
'width' => 140,
|
|
'filter_key' => 'b!name'
|
|
)
|
|
);
|
|
|
|
if ($obj->group_type == 'color')
|
|
$this->fieldsDisplay['color'] = array(
|
|
'title' => $this->l('Color'),
|
|
'width' => 40,
|
|
'filter_key' => 'b!color'
|
|
);
|
|
|
|
$this->fieldsDisplay['position'] = array(
|
|
'title' => $this->l('Position'),
|
|
'width' => 40,
|
|
'filter_key' => 'cp!position',
|
|
'position' => 'position'
|
|
);
|
|
|
|
$this->addRowAction('edit');
|
|
$this->addRowAction('delete');
|
|
|
|
// override attributes
|
|
$this->display = 'list';
|
|
$this->tpl_folder = 'attributes/';
|
|
|
|
$this->_where = 'AND a.`id_attribute_group` = '.(int)$id;
|
|
$this->_orderBy = 'position';
|
|
|
|
// get list and force no limit clause in the request
|
|
$this->getList($this->context->language->id);
|
|
|
|
|
|
// Render list
|
|
$helper = new HelperList();
|
|
$helper->actions = $this->actions;
|
|
$helper->override_folder = $this->tpl_folder;
|
|
$helper->no_link = true;
|
|
$helper->shopLinkType = '';
|
|
$helper->identifier = $this->identifier;
|
|
$helper->toolbar_fix = false;
|
|
$helper->orderBy = 'position';
|
|
$helper->orderWay = 'ASC';
|
|
$helper->currentIndex = self::$currentIndex;
|
|
$helper->token = $this->token;
|
|
$helper->table = $this->table;
|
|
$helper->simple_header = true;
|
|
$helper->show_toolbar = false;
|
|
$helper->bulk_actions = $this->bulk_actions;
|
|
$content = $helper->generateList($this->_list, $this->fieldsDisplay);
|
|
|
|
echo Tools::jsonEncode(array('use_parent_structure' => false, 'data' => $content));
|
|
exit;
|
|
}
|
|
}
|
|
|
|
/**
|
|
* AdminController::renderForm() override
|
|
* @see AdminController::renderForm()
|
|
*/
|
|
public function renderForm()
|
|
{
|
|
$this->table = 'attribute_group';
|
|
$this->identifier = 'id_attribute_group';
|
|
|
|
$group_type = array(
|
|
array(
|
|
'id' => 'select',
|
|
'name' => $this->l('Select')
|
|
),
|
|
array(
|
|
'id' => 'radio',
|
|
'name' => $this->l('Radio button')
|
|
),
|
|
array(
|
|
'id' => 'color',
|
|
'name' => $this->l('Color')
|
|
),
|
|
);
|
|
|
|
$this->fields_form = array(
|
|
'legend' => array(
|
|
'title' => $this->l('Attributes'),
|
|
'image' => '../img/admin/asterisk.gif'
|
|
),
|
|
'input' => array(
|
|
array(
|
|
'type' => 'text',
|
|
'label' => $this->l('Name:'),
|
|
'name' => 'name',
|
|
'lang' => true,
|
|
'size' => 33,
|
|
'required' => true,
|
|
'hint' => $this->l('Invalid characters:').' <>;=#{}'
|
|
),
|
|
array(
|
|
'type' => 'text',
|
|
'label' => $this->l('Public name:'),
|
|
'name' => 'public_name',
|
|
'lang' => true,
|
|
'size' => 33,
|
|
'required' => true,
|
|
'hint' => $this->l('Invalid characters:').' <>;=#{}',
|
|
'desc' => $this->l('Term or phrase displayed to the customer')
|
|
),
|
|
array(
|
|
'type' => 'select',
|
|
'label' => $this->l('Attribute type:'),
|
|
'name' => 'group_type',
|
|
'required' => true,
|
|
'options' => array(
|
|
'query' => $group_type,
|
|
'id' => 'id',
|
|
'name' => 'name'
|
|
),
|
|
'desc' => $this->l('Choose the type of the attribute')
|
|
)
|
|
)
|
|
);
|
|
|
|
if (Shop::isFeatureActive())
|
|
{
|
|
$this->fields_form['input'][] = array(
|
|
'type' => 'group_shop',
|
|
'label' => $this->l('Group Shop association:'),
|
|
'name' => 'checkBoxShopAsso',
|
|
'values' => Shop::getTree()
|
|
);
|
|
}
|
|
|
|
$this->fields_form['submit'] = array(
|
|
'title' => $this->l(' Save '),
|
|
'class' => 'button'
|
|
);
|
|
|
|
if (!($obj = $this->loadObject(true)))
|
|
return;
|
|
|
|
return parent::renderForm();
|
|
}
|
|
|
|
public function renderFormAttributes()
|
|
{
|
|
$attributes_groups = AttributeGroup::getAttributesGroups($this->context->language->id);
|
|
|
|
$this->table = 'attribute';
|
|
$this->identifier = 'id_attribute';
|
|
|
|
$this->fields_form = array(
|
|
'legend' => array(
|
|
'title' => $this->l('Values'),
|
|
'image' => '../img/admin/asterisk.gif'
|
|
),
|
|
'input' => array(
|
|
array(
|
|
'type' => 'select',
|
|
'label' => $this->l('Attribute type:'),
|
|
'name' => 'id_attribute_group',
|
|
'required' => true,
|
|
'options' => array(
|
|
'query' => $attributes_groups,
|
|
'id' => 'id_attribute_group',
|
|
'name' => 'name'
|
|
),
|
|
'desc' => $this->l('Choose the type of the attribute')
|
|
),
|
|
array(
|
|
'type' => 'text',
|
|
'label' => $this->l('Name:'),
|
|
'name' => 'name',
|
|
'lang' => true,
|
|
'size' => 33,
|
|
'required' => true,
|
|
'hint' => $this->l('Invalid characters:').' <>;=#{}'
|
|
)
|
|
)
|
|
);
|
|
|
|
if (Shop::isFeatureActive())
|
|
{
|
|
$this->fields_form['input'][] = array(
|
|
'type' => 'group_shop',
|
|
'label' => $this->l('Group Shop association:'),
|
|
'name' => 'checkBoxShopAsso',
|
|
'values' => Shop::getTree()
|
|
);
|
|
}
|
|
|
|
$this->fields_form['input'][] = array(
|
|
'type' => 'color',
|
|
'label' => $this->l('Color:'),
|
|
'name' => 'color',
|
|
'size' => 33,
|
|
'desc' => $this->l('HTML colors only (e.g.,').' "lightblue", "#CC6600")'
|
|
);
|
|
|
|
$this->fields_form['input'][] = array(
|
|
'type' => 'file',
|
|
'label' => $this->l('Texture:'),
|
|
'name' => 'texture',
|
|
'desc' => array(
|
|
$this->l('Upload color texture from your computer'),
|
|
$this->l('This will override the HTML color!')
|
|
)
|
|
);
|
|
|
|
$this->fields_form['input'][] = array(
|
|
'type' => 'text',
|
|
'label' => $this->l('Current texture:'),
|
|
'name' => 'texture'
|
|
);
|
|
|
|
$this->fields_form['submit'] = array(
|
|
'title' => $this->l(' Save '),
|
|
'class' => 'button'
|
|
);
|
|
|
|
// Override var of Controller
|
|
$this->table = 'attribute';
|
|
$this->className = 'Attribute';
|
|
$this->identifier = 'id_attribute';
|
|
$this->lang = true;
|
|
$this->tpl_folder = 'attributes/';
|
|
$this->fieldImageSettings = array('name' => 'texture', 'dir' => 'co');
|
|
|
|
// Create object Attribute
|
|
if (!$obj = new Attribute((int)Tools::getValue($this->identifier)))
|
|
return;
|
|
|
|
$str_attributes_groups = '';
|
|
foreach ($attributes_groups as $attribute_group)
|
|
$str_attributes_groups .= '"'.$attribute_group['id_attribute_group'].'" : '.($attribute_group['group_type'] == 'color' ? '1' : '0' ).', ';
|
|
|
|
$image = _PS_IMG_DIR_.$this->fieldImageSettings['dir'].'/'.$obj->id.'.jpg';
|
|
$this->tpl_form_vars = array(
|
|
'strAttributesGroups' => $str_attributes_groups,
|
|
'colorAttributeProperties' => Validate::isLoadedObject($obj) && $obj->isColorAttribute(),
|
|
'imageTextureExists' => file_exists($image),
|
|
'imageTexture' => $image,
|
|
'imageTextureUrl' => Tools::safeOutput($_SERVER['REQUEST_URI']).'&deleteImage=1'
|
|
);
|
|
|
|
return parent::renderForm();
|
|
}
|
|
|
|
/**
|
|
* AdminController::init() override
|
|
* @see AdminController::init()
|
|
*/
|
|
public function init()
|
|
{
|
|
if (Tools::isSubmit('updateattribute'))
|
|
$this->display = 'editAttributes';
|
|
else if (Tools::isSubmit('submitAddattribute'))
|
|
$this->display = 'editAttributes';
|
|
else if (Tools::isSubmit('submitAddattribute_group'))
|
|
$this->display = 'add';
|
|
|
|
parent::init();
|
|
}
|
|
|
|
/**
|
|
* Override processAdd to change SaveAndStay button action
|
|
* @see classes/AdminControllerCore::processUpdate()
|
|
*/
|
|
public function processAdd($token)
|
|
{
|
|
parent::processAdd($token);
|
|
|
|
if (Tools::isSubmit('submitAdd'.$this->table.'AndStay') && !count($this->errors))
|
|
{
|
|
if ($this->display == 'add')
|
|
$this->redirect_after = self::$currentIndex.'&'.$this->identifier.'=&conf=3&update'.$this->table.'&token='.$token;
|
|
else
|
|
$this->redirect_after = self::$currentIndex.'&'.$this->identifier.'=&id_attribute_group='.(int)Tools::getValue('id_attribute_group').'&conf=3&update'.$this->table.'&token='.$token;
|
|
}
|
|
}
|
|
|
|
/**
|
|
* Override processUpdate to change SaveAndStay button action
|
|
* @see classes/AdminControllerCore::processUpdate()
|
|
*/
|
|
public function processUpdate($token)
|
|
{
|
|
parent::processUpdate($token);
|
|
|
|
if (Tools::isSubmit('submitAdd'.$this->table.'AndStay') && !count($this->errors))
|
|
{
|
|
if ($this->display == 'add')
|
|
$this->redirect_after = self::$currentIndex.'&'.$this->identifier.'=&conf=3&update'.$this->table.'&token='.$token;
|
|
else
|
|
$this->redirect_after = self::$currentIndex.'&'.$this->identifier.'=&id_attribute_group='.(int)Tools::getValue('id_attribute_group').'&conf=3&update'.$this->table.'&token='.$token;
|
|
}
|
|
}
|
|
|
|
/**
|
|
* AdminController::initContent() override
|
|
* @see AdminController::initContent()
|
|
*/
|
|
public function initContent()
|
|
{
|
|
if (!Combination::isFeatureActive())
|
|
{
|
|
$this->displayWarning($this->l('This feature has been disabled, you can active this feature at this page:').
|
|
' <a href="index.php?tab=AdminPerformance&token='.Tools::getAdminTokenLite('AdminPerformance').
|
|
'#featuresDetachables">'.$this->l('Performances').'</a>');
|
|
return;
|
|
}
|
|
|
|
|
|
// toolbar (save, cancel, new, ..)
|
|
$this->initToolbar();
|
|
if ($this->display == 'edit' || $this->display == 'add')
|
|
{
|
|
if (!($this->object = $this->loadObject(true)))
|
|
return;
|
|
$this->content .= $this->renderForm();
|
|
}
|
|
else if ($this->display == 'editAttributes')
|
|
{
|
|
if (!$this->object = new Attribute((int)Tools::getValue('id_attribute')))
|
|
return;
|
|
|
|
$this->content .= $this->renderFormAttributes();
|
|
}
|
|
else if ($this->display != 'view' && !$this->ajax)
|
|
{
|
|
$this->content .= $this->renderList();
|
|
$this->content .= $this->renderOptions();
|
|
}
|
|
|
|
$this->context->smarty->assign(array(
|
|
'table' => $this->table,
|
|
'current' => self::$currentIndex,
|
|
'token' => $this->token,
|
|
'content' => $this->content,
|
|
'url_post' => self::$currentIndex.'&token='.$this->token,
|
|
));
|
|
}
|
|
|
|
public function initToolbar()
|
|
{
|
|
switch ($this->display)
|
|
{
|
|
// @todo defining default buttons
|
|
case 'add':
|
|
case 'edit':
|
|
case 'editAttributes':
|
|
// Default save button - action dynamically handled in javascript
|
|
$this->toolbar_btn['save'] = array(
|
|
'href' => '#',
|
|
'desc' => $this->l('Save')
|
|
);
|
|
|
|
$this->toolbar_btn['save-and-stay'] = array(
|
|
'short' => 'SaveAndStay',
|
|
'href' => '#',
|
|
'desc' => $this->l('Save and stay'),
|
|
);
|
|
|
|
$back = self::$currentIndex.'&token='.$this->token;
|
|
$this->toolbar_btn['cancel'] = array(
|
|
'href' => $back,
|
|
'desc' => $this->l('Cancel')
|
|
);
|
|
break;
|
|
default: // list
|
|
$this->toolbar_btn['new'] = array(
|
|
'href' => self::$currentIndex.'&add'.$this->table.'&token='.$this->token,
|
|
'desc' => $this->l('Add new Attributes')
|
|
);
|
|
$this->toolbar_btn['newAttributes'] = array(
|
|
'href' => self::$currentIndex.'&updateattribute&token='.$this->token,
|
|
'desc' => $this->l('Add new Values'),
|
|
'class' => 'toolbar-new'
|
|
);
|
|
}
|
|
}
|
|
|
|
public function initToolbarTitle()
|
|
{
|
|
// Breadcrumbs
|
|
$tabs = array();
|
|
$tabs = Tab::recursiveTab($this->id, $tabs);
|
|
$tabs = array_reverse($tabs);
|
|
|
|
$bread = '';
|
|
switch ($this->display)
|
|
{
|
|
case 'edit':
|
|
$current_tab = array_pop($tabs);
|
|
$tabs[] = array('name' => $this->l('Edit new Attribute'));
|
|
break;
|
|
|
|
case 'add':
|
|
$current_tab = array_pop($tabs);
|
|
$tabs[] = array('name' => $this->l('Add new Attribute'));
|
|
break;
|
|
|
|
case 'editAttributes':
|
|
$current_tab = array_pop($tabs);
|
|
$tabs[] = array('name' => $this->l('Add new Value'));
|
|
break;
|
|
}
|
|
// note : this should use a tpl file
|
|
foreach ($tabs as $key => $item)
|
|
$bread .= '<span class="breadcrumb item-'.$key.' ">'.$item['name'].'</span> : ';
|
|
|
|
$bread = rtrim($bread, ': ');
|
|
|
|
$this->toolbar_title = $bread;
|
|
}
|
|
|
|
/**
|
|
* Call the right method for creating or updating object
|
|
*
|
|
* @param $token
|
|
* @return mixed
|
|
*/
|
|
public function processSave($token)
|
|
{
|
|
if ($this->display == 'add' || $this->display == 'edit')
|
|
$this->identifier = 'id_attribute_group';
|
|
else
|
|
$this->identifier = 'id_attribute';
|
|
|
|
if ((int)Tools::getValue('id_attribute_group') <= 0 && $this->display == 'add'
|
|
|| (int)Tools::getValue('id_attribute') <= 0 && $this->display != 'add')
|
|
return $this->processAdd($token);
|
|
else
|
|
return $this->processUpdate($token);
|
|
}
|
|
|
|
public function postProcess()
|
|
{
|
|
if (!Combination::isFeatureActive())
|
|
return;
|
|
|
|
// If it's an attribute, load object Attribute()
|
|
if (Tools::getValue('id_attribute') || Tools::isSubmit('deleteattribute') || Tools::isSubmit('submitAddattribute'))
|
|
{
|
|
/* Hook */
|
|
Hook::exec('actionObjectAttributeAddBefore');
|
|
|
|
// Override var of Controller
|
|
$this->table = 'attribute';
|
|
$this->className = 'Attribute';
|
|
$this->identifier = 'id_attribute';
|
|
|
|
if ($this->tabAccess['edit'] !== '1')
|
|
$this->errors[] = Tools::displayError('You do not have permission to edit here.');
|
|
else if (!$object = new Attribute((int)Tools::getValue($this->identifier)))
|
|
$this->errors[] = Tools::displayError('An error occurred while updating status for object.').' <b>'.$this->table.'</b> '.Tools::displayError('(cannot load object)');
|
|
|
|
if (Tools::getValue('position') && Tools::getValue('id_attribute'))
|
|
{
|
|
$_POST['id_attribute_group'] = $object->id_attribute_group;
|
|
if (!$object->updatePosition((int)Tools::getValue('way'), (int)Tools::getValue('position')))
|
|
$this->errors[] = Tools::displayError('Failed to update the position.');
|
|
else
|
|
Tools::redirectAdmin(self::$currentIndex.'&conf=5&token='.Tools::getAdminTokenLite('AdminAttributesGroups'));
|
|
}
|
|
else if (Tools::isSubmit('deleteattribute') && Tools::getValue('id_attribute'))
|
|
{
|
|
if (!$object->delete())
|
|
$this->errors[] = Tools::displayError('Failed to delete attribute.');
|
|
else
|
|
Tools::redirectAdmin(self::$currentIndex.'&conf=1&token='.Tools::getAdminTokenLite('AdminAttributesGroups'));
|
|
}
|
|
else if (Tools::isSubmit('submitAddattribute'))
|
|
{
|
|
$this->action = 'save';
|
|
$id_attribute = (int)Tools::getValue('id_attribute');
|
|
// Adding last position to the attribute if not exist
|
|
if ($id_attribute <= 0)
|
|
{
|
|
$sql = 'SELECT `position`+1
|
|
FROM `'._DB_PREFIX_.'attribute`
|
|
WHERE `id_attribute_group` = '.(int)Tools::getValue('id_attribute_group').'
|
|
ORDER BY position DESC';
|
|
// set the position of the new group attribute in $_POST for postProcess() method
|
|
$_POST['position'] = DB::getInstance()->getValue($sql);
|
|
}
|
|
$_POST['id_parent'] = 0;
|
|
$this->processSave($this->token);
|
|
}
|
|
}
|
|
else
|
|
{
|
|
/* Hook */
|
|
Hook::exec('actionObjectAttributeGroupAddBefore');
|
|
|
|
if (Tools::getValue('submitDel'.$this->table))
|
|
{
|
|
if ($this->tabAccess['delete'] === '1')
|
|
{
|
|
if (isset($_POST[$this->table.'Box']))
|
|
{
|
|
$object = new $this->className();
|
|
if ($object->deleteSelection($_POST[$this->table.'Box']))
|
|
Tools::redirectAdmin(self::$currentIndex.'&conf=2'.'&token='.$this->token);
|
|
$this->errors[] = Tools::displayError('An error occurred while deleting selection.');
|
|
}
|
|
else
|
|
$this->errors[] = Tools::displayError('You must select at least one element to delete.');
|
|
}
|
|
else
|
|
$this->errors[] = Tools::displayError('You do not have permission to delete here.');
|
|
// clean position after delete
|
|
AttributeGroup::cleanPositions();
|
|
}
|
|
else if (Tools::isSubmit('submitAdd'.$this->table))
|
|
{
|
|
$id_attribute_group = (int)Tools::getValue('id_attribute_group');
|
|
// Adding last position to the attribute if not exist
|
|
if ($id_attribute_group <= 0)
|
|
{
|
|
$sql = 'SELECT `position`+1
|
|
FROM `'._DB_PREFIX_.'attribute_group`
|
|
ORDER BY position DESC';
|
|
// set the position of the new group attribute in $_POST for postProcess() method
|
|
$_POST['position'] = DB::getInstance()->getValue($sql);
|
|
}
|
|
// clean \n\r characters
|
|
foreach ($_POST as $key => $value)
|
|
if (preg_match('/^name_/Ui', $key))
|
|
$_POST[$key] = str_replace ('\n', '', str_replace('\r', '', $value));
|
|
parent::postProcess();
|
|
}
|
|
else
|
|
parent::postProcess();
|
|
}
|
|
}
|
|
}
|