localizer = $localizer; $this->footerData = $footerData; } /** * @inheritDoc */ public function getTemplateData(): array { $footerData = $this->footerData; // Add label to footer-info to use in PageFooter foreach ( $footerData['array-items'] as &$item ) { $msgKey = 'citizen-page-info-' . $item['name']; $item['label'] = $this->localizer->msg( $msgKey )->text(); } return $footerData; } }