PropertyOptions.php in Form Builder 7.2
Namespace
Drupal\form_builder_webformFile
modules/webform/src/PropertyOptions.phpView source
<?php
namespace Drupal\form_builder_webform;
/**
* Special handling for $component['options'].
*/
class PropertyOptions extends Property {
public function submit($form, &$form_state) {
// Webform needs the options to be saved as text.
$options = $form_state['values']['options']['options_field'];
parent::submit($form, $form_state);
$form_state['values']['options'] = $options;
}
}
Classes
Name | Description |
---|---|
PropertyOptions | Special handling for $component['options']. |