public function ApeTestController::content in Advanced Page Expiration 8
1 string reference to 'ApeTestController::content'
- ape_test.routing.yml in ape_test/
ape_test.routing.yml - ape_test/ape_test.routing.yml
File
- ape_test/
src/ Controller/ ApeTestController.php, line 14
Class
- ApeTestController
- Controller for ape testing.
Namespace
Drupal\ape_test\ControllerCode
public function content() {
$build = [
'#type' => 'markup',
'#markup' => t('Arrived at your final destination.'),
];
return $build;
}