Add description field to static arguments.
2 unresolved threads
2 unresolved threads
Closes #3479549
Merge request reports
Activity
Filter activity
44 44 * {@inheritdoc} 45 45 */ 46 46 public function defaultConfiguration() { 47 return parent::defaultConfiguration() + ['default_value' => '']; 47 return parent::defaultConfiguration() + ['argument_description' => ''] + ['default_value' => '']; changed this line in version 2 of the diff
52 52 */ 53 53 public function buildConfigurationForm(array $form, FormStateInterface $form_state) { 54 54 $form = parent::buildConfigurationForm($form, $form_state); 55 $form['argument_description'] = [ 56 '#type' => 'textfield', 57 '#title' => $this->t('Description'), changed this line in version 3 of the diff
added 1 commit
- c50af086 - Thx for adding the description to that field. LGTM
Please register or sign in to reply