<?php
class AdminOrdersControllerCore extends AdminController
{
public function __construct()
{
...
/* 'reference' => array(
'title' => $this->l('Reference')
),
*/
'tracking_number' => array(
'title' => "№ТТН НПочты",
'align' => 'center',
'width' => 50
),
'city' => array(
'title' => "Город",
'align' => 'center',
'width' => 40
),
'new' => array(
'title' => $this->l('New?'),
'align' => 'text-center',
'type' => 'bool',
'tmpTableFilter' => true,
'orderby' => false,
'callback' => 'printNewCustomer',
'width' => 20
),
'customer' => array(
'title' => $this->l('Customer'),
'havingFilter' => true,
),
'phone_mobile' => array(
'title' => "Телефон",
'align' => 'center',
'width' => 60
),
);
if (Configuration::get('PS_B2B_ENABLE')) {
...
parent::__construct();
}