Bug #17698
closedHook Request: db_list
0%
Description
It would be cool, if you could add a Hook to the typo3/db_list.php->main
for manipulations on the $dblist-object after:
$this->pointer = t3lib_div::intInRange($this->pointer,0,100000);
$dblist->start($this->id,$this->table,$this->pointer,$this->search_field,$this->search_levels,$this->showLimit);
$dblist->setDispFields();
I need the $this->id, $this->table and the $dblist for the manipulation.
An other option is, that the hook could be placed at the end of typo3/class.db_list.inc->start(...)
Reason:
I would like to add some permissions via PageTS like "only the owner or (cruser_id) of a record of special table can edit/see the record" and "a special group (e.g. chef editor) can see all records" on a page. So the administration effort is minimized, so you don't have to create a sys-folder for every editor who should edit a record-type like tt_news.
(issue imported from #M6545)
Files
Updated by Malte Jansen about 17 years ago
There is better place to make a Hook... see patch-file