Files
taome/controllers/admin/AdminOrderMessageController.php
2020-10-07 10:37:15 +02:00

113 lines
3.8 KiB
PHP

<?php
/**
* 2007-2019 PrestaShop and Contributors
*
* 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:
* https://opensource.org/licenses/OSL-3.0
* 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 https://www.prestashop.com for more information.
*
* @author PrestaShop SA <contact@prestashop.com>
* @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();
}
}