// fix table extensible
This commit is contained in:
@@ -79,14 +79,14 @@ class AdminCartsControllerCore extends AdminController
|
||||
),
|
||||
'date_add' => array(
|
||||
'title' => $this->l('Date'),
|
||||
'width' => 120,
|
||||
'width' => 150,
|
||||
'align' => 'right',
|
||||
'type' => 'datetime',
|
||||
'filter_key' => 'a!date_add'
|
||||
),
|
||||
'id_guest' => array(
|
||||
'title' => $this->l('Online'),
|
||||
'width' => 25,
|
||||
'width' => 40,
|
||||
'align' => 'center',
|
||||
'type' => 'bool',
|
||||
'filter_key' => 'id_guest',
|
||||
|
||||
@@ -57,7 +57,6 @@ class AdminGroupsControllerCore extends AdminController
|
||||
),
|
||||
'name' => array(
|
||||
'title' => $this->l('Name'),
|
||||
'width' => 80,
|
||||
'filter_key' => 'b!name'
|
||||
),
|
||||
'reduction' => array(
|
||||
@@ -81,7 +80,7 @@ class AdminGroupsControllerCore extends AdminController
|
||||
),
|
||||
'date_add' => array(
|
||||
'title' => $this->l('Creation date'),
|
||||
'width' => 60,
|
||||
'width' => 150,
|
||||
'type' => 'date',
|
||||
'align' => 'right'
|
||||
)
|
||||
|
||||
@@ -41,7 +41,7 @@ class AdminImagesControllerCore extends AdminController
|
||||
|
||||
$this->fieldsDisplay = array(
|
||||
'id_image_type' => array('title' => $this->l('ID'), 'align' => 'center', 'width' => 25),
|
||||
'name' => array('title' => $this->l('Name'), 'width' => 140, 'size' => 16),
|
||||
'name' => array('title' => $this->l('Name'), 'size' => 16),
|
||||
'width' => array('title' => $this->l('Width'), 'align' => 'right', 'suffix' => ' px', 'width' => 50, 'size' => 5),
|
||||
'height' => array('title' => $this->l('Height'), 'align' => 'right', 'suffix' => ' px', 'width' => 50, 'size' => 5)
|
||||
);
|
||||
|
||||
@@ -40,11 +40,11 @@ class AdminLogsControllerCore extends AdminController
|
||||
$this->fieldsDisplay = array(
|
||||
'id_log' => array('title' => $this->l('ID'), 'align' => 'center', 'width' => 25),
|
||||
'severity' => array('title' => $this->l('Severity (1-4)'), 'align' => 'center', 'width' => 50),
|
||||
'message' => array('title' => $this->l('Message'), 'width' => 377),
|
||||
'message' => array('title' => $this->l('Message')),
|
||||
'object_type' => array('title' => $this->l('Object type'), 'width' => 75),
|
||||
'object_id' => array('title' => $this->l('Object ID'), 'width' => 50),
|
||||
'error_code' => array('title' => $this->l('Error code'), 'width' => 75, 'prefix' => '0x'),
|
||||
'date_add' => array('title' => $this->l('Date'), 'width' => 35, 'align' => 'right', 'type' => 'datetime')
|
||||
'date_add' => array('title' => $this->l('Date'), 'width' => 150, 'align' => 'right', 'type' => 'datetime')
|
||||
);
|
||||
|
||||
$this->options = array(
|
||||
|
||||
@@ -69,7 +69,7 @@ class AdminOrdersControllerCore extends AdminController
|
||||
'total_paid_tax_incl' => array('title' => $this->l('Total'), 'width' => 70, 'align' => 'right', 'prefix' => '<b>', 'suffix' => '</b>', 'type' => 'price', 'currency' => true),
|
||||
'payment' => array('title' => $this->l('Payment'), 'width' => 100),
|
||||
'osname' => array('title' => $this->l('Status'), 'color' => 'color', 'width' => 230, 'type' => 'select', 'list' => $statesArray, 'filter_key' => 'os!id_order_state', 'filter_type' => 'int'),
|
||||
'date_add' => array('title' => $this->l('Date'), 'width' => 120, 'align' => 'right', 'type' => 'datetime', 'filter_key' => 'a!date_add'),
|
||||
'date_add' => array('title' => $this->l('Date'), 'width' => 150, 'align' => 'right', 'type' => 'datetime', 'filter_key' => 'a!date_add'),
|
||||
'id_pdf' => array('title' => $this->l('PDF'), 'width' => 35, 'align' => 'center', 'callback' => 'printPDFIcons', 'orderby' => false, 'search' => false, 'remove_onclick' => true));
|
||||
|
||||
$this->shopLinkType = 'shop';
|
||||
|
||||
@@ -48,7 +48,7 @@ class AdminProfilesControllerCore extends AdminController
|
||||
'align' => 'center',
|
||||
'width' => 25
|
||||
),
|
||||
'name' => array('title' => $this->l('Name'), 'width' => 200)
|
||||
'name' => array('title' => $this->l('Name'))
|
||||
);
|
||||
|
||||
$this->identifier = 'id_profile';
|
||||
|
||||
@@ -57,8 +57,7 @@ class AdminSpecificPriceRuleController extends AdminController
|
||||
'width' => 200
|
||||
),
|
||||
'shop_name' => array(
|
||||
'title' => $this->l('Shop'),
|
||||
'width' => 300
|
||||
'title' => $this->l('Shop')
|
||||
),
|
||||
'currency_name' => array(
|
||||
'title' => $this->l('Currency'),
|
||||
|
||||
@@ -65,7 +65,7 @@ class AdminStoresControllerCore extends AdminController
|
||||
'name' => array('title' => $this->l('Name'), 'width' => 120, 'filter_key' => 'a!name'),
|
||||
'phone' => array('title' => $this->l('Phone'), 'width' => 70),
|
||||
'fax' => array('title' => $this->l('Fax'), 'width' => 70),
|
||||
'active' => array('title' => $this->l('Enabled'), 'align' => 'center', 'active' => 'status', 'type' => 'bool', 'orderby' => false)
|
||||
'active' => array('title' => $this->l('Enabled'), 'width' => 70, 'align' => 'center', 'active' => 'status', 'type' => 'bool', 'orderby' => false)
|
||||
);
|
||||
|
||||
$this->bulk_actions = array('delete' => array('text' => $this->l('Delete selected'), 'confirm' => $this->l('Delete selected items?')));
|
||||
|
||||
Reference in New Issue
Block a user