public function BlockEventVariables::getContentChild in Hook Event Dispatcher 3.x
Same name and namespace in other branches
- 8.2 modules/preprocess_event_dispatcher/src/Variables/BlockEventVariables.php \Drupal\preprocess_event_dispatcher\Variables\BlockEventVariables::getContentChild()
Get the content for a given child.
Parameters
string $childName: Name of the child.
Return value
array Content of the child or [].
File
- modules/
preprocess_event_dispatcher/ src/ Variables/ BlockEventVariables.php, line 42
Class
- BlockEventVariables
- Class BlockEventVariables.
Namespace
Drupal\preprocess_event_dispatcher\VariablesCode
public function getContentChild(string $childName) : array {
return $this->variables['content'][$childName] ?? [];
}