‪TYPO3CMS  10.4
AjaxRoutes.php
Go to the documentation of this file.
1 <?php
2 
3 return [
4  // Get the content of a widget
5  'dashboard_get_widget_content' => [
6  'path' => '/dashboard/widget/content',
7  'target' => TYPO3\CMS\Dashboard\Controller\WidgetAjaxController::class . '::getContent'
8  ],
9  // Save positions of the widgets
10  'dashboard_save_widget_positions' => [
11  'path' => '/dashboard/widget/positions/save',
12  'target' => TYPO3\CMS\Dashboard\Controller\WidgetAjaxController::class . '::savePositions'
13  ],
14 ];