Actions
Feature #91917
closedWeb List filter record_type
Status:
Closed
Priority:
Should have
Assignee:
-
Category:
Backend API
Target version:
-
Start date:
2020-08-02
Due date:
% Done:
0%
Estimated time:
PHP Version:
Tags:
Complexity:
Sprint Focus:
Description
Hello,
it would be great to generate a Module and filter them by record_type (configured in TCA).
Backend Module is registered and route is by
public function bookAction() {
$uriBuilder = GeneralUtility::makeInstance(UriBuilder::class);
$uri = $uriBuilder->buildUriFromRoute('web_list', array(
'id' => 79,
'table' => 'tx_vatemplate_domain_model_book',
#filter by record type -> currently not possible
'record_type' => '1'
));
$this->redirectToUri($uri);
}
Best would be to add a custom where clause like ' AND book_type=1'
Thanks and best regards,
Harald
Actions