Skip to content

Instantly share code, notes, and snippets.

@tanmayk
Created May 13, 2016 14:20
Show Gist options
  • Save tanmayk/31580dd3a5d9b5f2e8a8c8dbd80a387f to your computer and use it in GitHub Desktop.
Save tanmayk/31580dd3a5d9b5f2e8a8c8dbd80a387f to your computer and use it in GitHub Desktop.
public function buildOptionsForm(&$form, FormStateInterface $form_state) {
parent::buildOptionsForm($form, $form_state);
$form['height'] = array(
'#type' => 'textfield',
'#title' => $this->t('Height'),
'#description' => $this->t('Default height of header.'),
'#size' => '6',
'#default_value' => $this->options['height'],
'#required' => TRUE,
'#field_suffix' => 'px',
);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment