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/atoms / src / Annotation / Atoms.php
Size: Mime:
<?php

namespace Drupal\atoms\Annotation;

use Drupal\Component\Annotation\Plugin;

/**
 * Defines an import annotation object.
 *
 * Plugin Namespace: Plugin\Atoms
 *
 *
 * @see \Drupal\Core\ArchiverImportrManager
 * @see \Drupal\Core\Archiver\ImportInterface
 * @see plugin_api
 * @see hook_import_alter()
 *
 * @Annotation
 */
class Atoms extends Plugin {

  /**
   * The import plugin ID.
   *
   * @var string
   */
  public $id;

  /**
   * The human-readable name of the plugin.
   *
   * @ingroup plugin_translatable
   *
   * @var \Drupal\Core\Annotation\Translation
   */
  public $title;

  /**
   * The description of the plugin.
   *
   * @ingroup plugin_translatable
   *
   * @var \Drupal\Core\Annotation\Translation
   */
  public $description;

  /**
   * The field types of the plugin.
   *
   * @var array
   */
  public $types;

  /**
   * The field types of the plugin.
   *
   * @var array
   */
  public $render_settings;
}