* @copyright 2007-2011 PrestaShop SA
* @version Release: $Revision: 8971 $
* @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
* International Registered Trademark & Property of PrestaShop SA
*/
class AdminGroupShopControllerCore extends AdminController
{
public function __construct()
{
$this->table = 'group_shop';
$this->className = 'GroupShop';
$this->lang = false;
$this->edit = true;
$this->delete = false;
$this->requiredDatabase = true;
$this->context = Context::getContext();
if (!Tools::getValue('realedit'))
$this->deleted = false;
$this->fieldsDisplay = array(
'id_group_shop' => array('title' => $this->l('ID'), 'align' => 'center', 'width' => 25),
'name' => array('title' => $this->l('County'), 'width' => 130, 'filter_key' => 'b!name'),
'active' => array('title' => $this->l('Enabled'), 'align' => 'center', 'active' => 'status', 'type' => 'bool', 'orderby' => false, 'filter_key' => 'active'),
);
$enabled = '
';
$disabled = '
';
$this->fields_form = array(
'legend' => array(
'title' => $this->l('GroupShop')
),
'input' => array(
array(
'type' => 'text',
'label' => $this->l('GroupShop name:'),
'name' => 'name'
),
array(
'type' => 'radio',
'label' => $this->l('Share customers:'),
'name' => 'share_customer',
'required' => true,
'class' => 't',
'values' => array(
array(
'id' => 'share_customer_on',
'value' => 1,
'label' => $enabled
),
array(
'id' => 'share_customer_off',
'value' => 0,
'label' => $disabled
)
),
'p' => $this->l('Share customers between shops of this group')
),
array(
'type' => 'radio',
'label' => $this->l('Share stock:'),
'name' => 'share_stock',
'required' => true,
'class' => 't',
'values' => array(
array(
'id' => 'share_stock_on',
'value' => 1,
'label' => $enabled
),
array(
'id' => 'share_stock_off',
'value' => 0,
'label' => $disabled
)
),
'p' => $this->l('Share stock between shops of this group')
),
array(
'type' => 'radio',
'label' => $this->l('Share orders:'),
'name' => 'share_order',
'required' => true,
'class' => 't',
'values' => array(
array(
'id' => 'share_order_on',
'value' => 1,
'label' => $enabled
),
array(
'id' => 'share_order_off',
'value' => 0,
'label' => $disabled
)
),
'p' => $this->l('Share orders and carts between shops of this group (you can share orders only if you share customers and stock)')
),
array(
'type' => 'radio',
'label' => $this->l('Status:'),
'name' => 'active',
'required' => true,
'class' => 't',
'values' => array(
array(
'id' => 'active_on',
'value' => 1,
'label' => $enabled
),
array(
'id' => 'active_off',
'value' => 0,
'label' => $disabled
)
),
'p' => $this->l('Enable or disable shop')
)
),
'submit' => array(
'title' => $this->l(' Save '),
'class' => 'button'
)
);
$import_data = array(
'attribute_group' => $this->l('Attribute groups'),
'attribute' => $this->l('Attributes'),
//'customer_group' => $this->l('Customer groups'),
'feature' => $this->l('Features'),
'group' => $this->l('Groups'),
'manufacturer' => $this->l('Manufacturers'),
'supplier' => $this->l('Suppliers'),
'tax_rules_group' => $this->l('Tax rules groups'),
'zone' => $this->l('Zones'),
);
$this->fields_import_form = array(
'legend' => array(
'title' => $this->l('Import data from another group shop')
),
'label' => $this->l('Duplicate data from group shop'),
'checkbox' => array(
'type' => 'checkbox',
'label' => $this->l('Duplicate data from group shop'),
'name' => 'useImportData',
'value' => 1
),
'select' => array(
'type' => 'select',
'name' => 'importFromShop',
'options' => array(
'query' => Shop::getTree(),
'name' => 'name'
)
),
'allcheckbox' => array(
'type' => 'checkbox',
'values' => $import_data
),
'p' => $this->l('Use this option to associate data (products, modules, etc.) the same way as the selected shop'),
'submit' => array(
'title' => $this->l(' Save '),
'class' => 'button'
)
);
parent::__construct();
}
public function postProcess()
{
if (Tools::isSubmit('delete'.$this->table) || Tools::isSubmit('status') || Tools::isSubmit('status'.$this->table))
{
$object = $this->loadObject();
if (GroupShop::getTotalGroupShops() == 1)
$this->_errors[] = Tools::displayError('You cannot delete or disable the last groupshop.');
else if ($object->haveShops())
$this->_errors[] = Tools::displayError('You cannot delete or disable a groupshop which have this shops using it.');
if (count($this->_errors))
return false;
}
return parent::postProcess();
}
public function initContent()
{
if (!($obj = $this->loadObject(true)))
return;
if (Shop::getTotalShops() > 1 && $obj->id)
$disabled = array(
'share_customer' => true,
'share_stock' => true,
'share_order' => true,
'active' => false
);
else
$disabled = false;
$this->context->smarty->assign(array(
'disabled' => $disabled,
'checked' => (Tools::getValue('addgroup_shop') !== false) ? true : false,
'defaultGroup' => Shop::getInstance(Configuration::get('PS_SHOP_DEFAULT'))->getGroupID()
));
if ($this->display != 'edit' && $this->display != 'add')
$this->display = 'list';
parent::initContent();
if ($this->display == 'edit' || $this->display == 'add')
{
$helper = new HelperForm();
// Check if form template has been overriden
if (file_exists($this->context->smarty->template_dir.'/'.$this->tpl_folder.'form_import.tpl'))
$helper->tpl = $this->tpl_folder.'form_import.tpl';
$helper->currentIndex = self::$currentIndex;
$helper->token = $this->token;
$helper->table = $this->table;
$helper->id = $obj->id;
$helper->fields_value = $this->getFieldsValue($obj);
$this->content .= $helper->generateForm($this->fields_import_form);
}
}
public function afterAdd($new_group_shop)
{
if (Tools::getValue('useImportData') && ($import_data = Tools::getValue('importData')) && is_array($import_data))
$new_group_shop->copyGroupShopData(Tools::getValue('importFromShop'), $import_data);
}
public function afterUpdate($new_group_shop)
{
if (Tools::getValue('useImportData') && ($import_data = Tools::getValue('importData')) && is_array($import_data))
$new_group_shop->copyGroupShopData(Tools::getValue('importFromShop'), $import_data);
}
}