Skip to content

Instantly share code, notes, and snippets.

@midnai
Created February 19, 2018 17:28
Show Gist options
  • Save midnai/06a7dbcded132ba0eae022b42297d56d to your computer and use it in GitHub Desktop.
Save midnai/06a7dbcded132ba0eae022b42297d56d to your computer and use it in GitHub Desktop.
Drupal 8 - Block Attributes
/**
* {@inheritdoc}
*/
public function build() {
return [
'#theme' => 'cfc_footer_block',
'#attributes' => [
'class' => ['footer'],
],
'#cache' => [
'max-age' => Cache::PERMANENT,
],
];
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment