class 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
-
modules/
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. |