public NodeController::__construct(DateFormatterInterface $date_formatter, RendererInterface $renderer)
Constructs a NodeController object.
Parameters
\Drupal\Core\Datetime\DateFormatterInterface $date_formatter: The date formatter service.
\Drupal\Core\Render\RendererInterface $renderer: The renderer service.
File
- core/modules/node/src/Controller/NodeController.php, line 43
Class
- NodeController
- Returns responses for Node routes.
Namespace
Drupal\node\Controller
Code
1 2 3 4 | public function __construct(DateFormatterInterface $date_formatter , RendererInterface $renderer ) { $this ->dateFormatter = $date_formatter ; $this ->renderer = $renderer ; } |
Please login to continue.