Skip to content

Instantly share code, notes, and snippets.

@JeromeChevalier
Last active January 23, 2019 21:28
Show Gist options
  • Save JeromeChevalier/acbbd4cbe325fb8207e63694218499e0 to your computer and use it in GitHub Desktop.
Save JeromeChevalier/acbbd4cbe325fb8207e63694218499e0 to your computer and use it in GitHub Desktop.
Add css classname to a Render array element #drupal8
$form['submit'] = [
'#type' => 'submit',
'#value' => $this->t('Update user'),
];
// Add the css classes name
$form['submit']['#attributes']['class'][] = 'btn btn-success';
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment