Actions
Feature #19159
closedRecursive storage pid in TypoScript
Start date:
2008-07-28
Due date:
% Done:
0%
Estimated time:
PHP Version:
Tags:
Complexity:
Sprint Focus:
Description
There is an option for recursive feuser search in fe login.
It would make very much sense to add this functionality to the TypoScript options.
This is how it is done for flex:
$pid = $flex['pages'] ? $this->pi_getPidList($flex['pages'], $flex['recursive']) : 0;
So on line 78 (just after the storagePid determination) you could insert :
if ($this->conf['storageRecursive']) {
$this->spid = $this->conf['storagePid'] ? $this->pi_getPidList($this->conf['storagePid'],1 ) : 0;
}
(issue imported from #M9061)
Files
Actions