public HistoryController::getNodeReadTimestamps(Request $request)
Returns a set of nodes' last read timestamps.
Parameters
\Symfony\Component\HttpFoundation\Request $request: The request of the page.
Return value
Symfony\Component\HttpFoundation\JsonResponse The JSON response.
File
- core/modules/history/src/Controller/HistoryController.php, line 26
Class
- HistoryController
- Returns responses for History module routes.
Namespace
Drupal\history\Controller
Code
1 2 3 4 5 6 7 8 9 10 11 | public function getNodeReadTimestamps(Request $request ) { if ( $this ->currentUser()->isAnonymous()) { throw new AccessDeniedHttpException(); } $nids = $request ->request->get( 'node_ids' ); if (!isset( $nids )) { throw new NotFoundHttpException(); } return new JsonResponse(history_read_multiple( $nids )); } |
Please login to continue.