class StreamWrapperExampleController
Same name in other branches
- 3.x modules/stream_wrapper_example/src/Controller/StreamWrapperExampleController.php \Drupal\stream_wrapper_example\Controller\StreamWrapperExampleController
- 4.0.x modules/stream_wrapper_example/src/Controller/StreamWrapperExampleController.php \Drupal\stream_wrapper_example\Controller\StreamWrapperExampleController
Controller class for the Stream Wrapper Example.
Hierarchy
- class \Drupal\stream_wrapper_example\Controller\StreamWrapperExampleController extends \Drupal\Core\Controller\ControllerBase
Expanded class hierarchy of StreamWrapperExampleController
File
-
stream_wrapper_example/
src/ Controller/ StreamWrapperExampleController.php, line 10
Namespace
Drupal\stream_wrapper_example\ControllerView source
class StreamWrapperExampleController extends ControllerBase {
/**
* Description page for the example.
*/
public function description() {
$build = [
'description' => [
'#theme' => 'example_description',
],
];
return $build;
}
}
Members
Title Sort descending | Modifiers | Object type | Summary |
---|---|---|---|
StreamWrapperExampleController::description | public | function | Description page for the example. |