Why Gemfury? Push, build, and install  RubyGems npm packages Python packages Maven artifacts PHP packages Go Modules Debian packages RPM packages NuGet packages

Repository URL to install this package:

Details    
novicell/custom_forms / src / Annotation / CustomFormsSubmissionHandler.php
Size: Mime:
<?php

namespace Drupal\custom_forms\Annotation;

use Drupal\Component\Annotation\Plugin;

/**
 * Defines a custom forms submission handler plugin annotation object.
 *
 * @Annotation
 */
class CustomFormsSubmissionHandler extends Plugin {

  /**
   * The custom forms field type ID.
   *
   * @var string
   */
  public $id;

  /**
   * The custom forms field type name.
   *
   * @ingroup plugin_translatable
   *
   * @var \Drupal\Core\Annotation\Translation
   */
  public $label;

  /**
   * A short description of the custom forms field type.
   *
   * @ingroup plugin_translatable
   *
   * @var \Drupal\Core\Annotation\Translation
   */
  public $description;

  /**
   * Whether the plugin has additional settings.
   *
   * @var bool
   */
  public $has_settings;
}