* @copyright 2007-2019 PrestaShop SA and Contributors * @license https://opensource.org/licenses/OSL-3.0 Open Software License (OSL 3.0) * International Registered Trademark & Property of PrestaShop SA */ /** * @property OrderMessage $object */ class AdminOrderMessageControllerCore extends AdminController { public function __construct() { $this->bootstrap = true; $this->table = 'order_message'; $this->className = 'OrderMessage'; $this->lang = true; $this->addRowAction('edit'); $this->addRowAction('delete'); parent::__construct(); if (!Tools::getValue('realedit')) { $this->deleted = false; } 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_order_message' => array( 'title' => $this->trans('ID', array(), 'Admin.Global'), 'align' => 'center', ), 'name' => array( 'title' => $this->trans('Name', array(), 'Admin.Global'), ), 'message' => array( 'title' => $this->trans('Message', array(), 'Admin.Global'), 'maxlength' => 300, ), ); $this->fields_form = array( 'legend' => array( 'title' => $this->trans('Order messages', array(), 'Admin.Orderscustomers.Feature'), 'icon' => 'icon-mail', ), 'input' => array( array( 'type' => 'text', 'lang' => true, 'label' => $this->trans('Name', array(), 'Admin.Global'), 'name' => 'name', 'size' => 53, 'required' => true, ), array( 'type' => 'textarea', 'lang' => true, 'label' => $this->trans('Message', array(), 'Admin.Global'), 'name' => 'message', 'required' => true, ), ), 'submit' => array( 'title' => $this->trans('Save', array(), 'Admin.Actions'), ), ); } public function initPageHeaderToolbar() { if (empty($this->display)) { $this->page_header_toolbar_btn['new_order_message'] = array( 'href' => self::$currentIndex . '&addorder_message&token=' . $this->token, 'desc' => $this->trans('Add new order message', array(), 'Admin.Orderscustomers.Feature'), 'icon' => 'process-icon-new', ); } parent::initPageHeaderToolbar(); } }