public function GDPRController::summaryPage in General Data Protection Regulation 8
Same name and namespace in other branches
- 8.2 modules/gdpr_tasks/src/Controller/GDPRController.php \Drupal\gdpr_tasks\Controller\GDPRController::summaryPage()
- 3.0.x modules/gdpr_tasks/src/Controller/GDPRController.php \Drupal\gdpr_tasks\Controller\GDPRController::summaryPage()
Placeholder for a GDPR Dashboard.
Return value
array Renderable Drupal markup.
1 string reference to 'GDPRController::summaryPage'
- gdpr_tasks.routing.yml in modules/
gdpr_tasks/ gdpr_tasks.routing.yml - modules/gdpr_tasks/gdpr_tasks.routing.yml
File
- modules/
gdpr_tasks/ src/ Controller/ GDPRController.php, line 82
Class
- GDPRController
- Returns responses for Views UI routes.
Namespace
Drupal\gdpr_tasks\ControllerCode
public function summaryPage() {
return [
'#markup' => $this
->t('Summary'),
];
}