public function LoopThroughViewResult::buildForm in Business Rules 8
Same name and namespace in other branches
- 2.x src/Plugin/BusinessRulesAction/LoopThroughViewResult.php \Drupal\business_rules\Plugin\BusinessRulesAction\LoopThroughViewResult::buildForm()
Form constructor.
Give a chance to plugin to change the buildForm method.
Parameters
array $form: The form array.
\Drupal\Core\Form\FormStateInterface $form_state: The form state object.
Overrides BusinessRulesItemPluginBase::buildForm
File
- src/
Plugin/ BusinessRulesAction/ LoopThroughViewResult.php, line 296
Class
- LoopThroughViewResult
- Class LoopThroughViewResult.
Namespace
Drupal\business_rules\Plugin\BusinessRulesActionCode
public function buildForm(array &$form, FormStateInterface $form_state) {
parent::buildForm($form, $form_state);
// We don't need variables for this action.
unset($form['variables']);
}