You are here

ActionForm.php in Business Rules 8

Same filename and directory in other branches
  1. 2.x src/Form/ActionForm.php

File

src/Form/ActionForm.php
View source
<?php

namespace Drupal\business_rules\Form;


/**
 * Class ActionForm.
 *
 * @package Drupal\business_rules\Form
 */
class ActionForm extends ItemForm {

  /**
   * {@inheritdoc}
   */
  public function getItemManager() {
    $container = \Drupal::getContainer();
    return $container
      ->get('plugin.manager.business_rules.action');
  }

}

Classes

Namesort descending Description
ActionForm Class ActionForm.