1
0
mirror of https://github.com/e107inc/e107.git synced 2025-07-27 09:50:49 +02:00

Enabled batch copy of featurebox items.

This commit is contained in:
CaMer0n
2011-08-19 23:44:41 +00:00
parent 9b730ee240
commit fc1286a7a0

View File

@@ -66,6 +66,7 @@ class fb_category_ui extends e_admin_ui
protected $pid = "fb_category_id"; protected $pid = "fb_category_id";
protected $perPage = 0; //no limit protected $perPage = 0; //no limit
protected $fields = array( protected $fields = array(
'checkboxes' => array('title'=> '', 'type' => null, 'width' =>'5%', 'forced'=> TRUE, 'thclass'=>'center', 'class'=>'center first'), 'checkboxes' => array('title'=> '', 'type' => null, 'width' =>'5%', 'forced'=> TRUE, 'thclass'=>'center', 'class'=>'center first'),
'fb_category_id' => array('title'=> LAN_ID, 'type' => 'number', 'data' => 'int', 'width' =>'5%', 'forced'=> TRUE), 'fb_category_id' => array('title'=> LAN_ID, 'type' => 'number', 'data' => 'int', 'width' =>'5%', 'forced'=> TRUE),
@@ -167,6 +168,7 @@ class fb_main_ui extends e_admin_ui
protected $pid = "fb_id"; protected $pid = "fb_id";
protected $perPage = 10; protected $perPage = 10;
protected $batchDelete = true; protected $batchDelete = true;
protected $batchCopy = true;
protected $fields = array( protected $fields = array(
'checkboxes' => array('title'=> '', 'type' => null, 'width' =>'5%', 'forced'=> TRUE, 'thclass'=>'center first', 'class'=>'center'), 'checkboxes' => array('title'=> '', 'type' => null, 'width' =>'5%', 'forced'=> TRUE, 'thclass'=>'center first', 'class'=>'center'),