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 / modules / payment / src / Annotation / CustomFormsPaymentMethod.php
Size: Mime:
<?php

namespace Drupal\custom_forms_payment\Annotation;

use Drupal\Component\Annotation\Plugin;

/**
 * Defines a custom forms payment method plugin annotation object.
 *
 * @Annotation
 */
class CustomFormsPaymentMethod 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;

}