Feature #19358 ยป bug_9394.diff
class.db_list_extra.inc 2008-09-19 14:09:55.000000000 -0400 | ||
---|---|---|
var $duplicateStack=array(); // Used to track which elements has duplicates and how many
|
||
/**
|
||
* Initialise $this->fixedL from page tsconfig
|
||
*/
|
||
function __construct() {
|
||
$idPage = t3lib_div::_GP('id');
|
||
$tsConfig = t3lib_BEfunc::getPagesTSconfig($idPage);
|
||
$this->fixedL = isset($tsConfig['backend.']['list.']['fixedL']) ? $tsConfig['backend.']['list.']['fixedL'] : 30;
|
||
}
|
||
|
||
/**
|
||
* Create the panel of buttons for submitting the form or otherwise perform operations.
|
||
*
|
||
* @return array all available buttons as an assoc. array
|
||
... | ... | |
include_once($TYPO3_CONF_VARS[TYPO3_MODE]['XCLASS']['typo3/class.db_list_extra.inc']);
|
||
}
|
||