* @copyright 2007-2018 PrestaShop SA * @license https://opensource.org/licenses/OSL-3.0 Open Software License (OSL 3.0) * International Registered Trademark & Property of PrestaShop SA */ /** * @property Contact $object */ class AdminContactsControllerCore extends AdminController { public function __construct() { $this->bootstrap = true; $this->table = 'contact'; $this->className = 'Contact'; $this->lang = true; $this->addRowAction('edit'); $this->addRowAction('delete'); parent::__construct(); $this->bulk_actions = array( 'delete' => array( 'text' => $this->trans('Delete selected', array(), 'Admin.Actions'), 'confirm' => $this->trans('Delete selected items?', array(), 'Admin.Notifications.Warning'), 'icon' => 'icon-trash', ), ); $this->fields_list = array( 'id_contact' => array( 'title' => $this->trans('ID', array(), 'Admin.Global'), 'align' => 'center', 'class' => 'fixed-width-xs', ), 'name' => array( 'title' => $this->trans('Title', array(), 'Admin.Global'), 'maxlength' => 30, ), 'email' => array( 'title' => $this->trans('Email address', array(), 'Admin.Global'), 'maxlength' => 50, ), 'description' => array( 'title' => $this->trans('Description', array(), 'Admin.Global'), ), ); } public function renderForm() { $this->fields_form = array( 'legend' => array( 'title' => $this->trans('Contacts', array(), 'Admin.Shopparameters.Feature'), 'icon' => 'icon-envelope-alt', ), 'input' => array( array( 'type' => 'text', 'label' => $this->trans('Title', array(), 'Admin.Global'), 'name' => 'name', 'required' => true, 'lang' => true, 'col' => 4, 'hint' => $this->trans('Contact name (e.g. Customer Support).', array(), 'Admin.Shopparameters.Help'), ), array( 'type' => 'text', 'label' => $this->trans('Email address', array(), 'Admin.Global'), 'name' => 'email', 'required' => false, 'col' => 4, 'hint' => $this->trans('Emails will be sent to this address.', array(), 'Admin.Shopparameters.Help'), ), array( 'type' => 'switch', 'label' => $this->trans('Save messages?', array(), 'Admin.Shopparameters.Feature'), 'name' => 'customer_service', 'required' => false, 'class' => 't', 'is_bool' => true, 'hint' => $this->trans('If enabled, all messages will be saved in the "Customer Service" page under the "Customer" menu.', array(), 'Admin.Shopparameters.Help'), 'values' => array( array( 'id' => 'customer_service_on', 'value' => 1, 'label' => $this->trans('Enabled', array(), 'Admin.Global'), ), array( 'id' => 'customer_service_off', 'value' => 0, 'label' => $this->trans('Disabled', array(), 'Admin.Global'), ), ), ), array( 'type' => 'textarea', 'label' => $this->trans('Description', array(), 'Admin.Global'), 'name' => 'description', 'required' => false, 'lang' => true, 'col' => 6, 'hint' => $this->trans('Further information regarding this contact.', array(), 'Admin.Shopparameters.Help'), ), ), 'submit' => array( 'title' => $this->trans('Save', array(), 'Admin.Actions'), ), ); if (Shop::isFeatureActive()) { $this->fields_form['input'][] = array( 'type' => 'shop', 'label' => $this->trans('Shop association', array(), 'Admin.Global'), 'name' => 'checkBoxShopAsso', ); } return parent::renderForm(); } public function initPageHeaderToolbar() { $this->initToolbar(); if (empty($this->display)) { $this->page_header_toolbar_btn['new_contact'] = array( 'href' => self::$currentIndex . '&addcontact&token=' . $this->token, 'desc' => $this->trans('Add new contact', array(), 'Admin.Shopparameters.Feature'), 'icon' => 'process-icon-new', ); } parent::initPageHeaderToolbar(); } }