You are here

ShareUsageDataPlugin.php in Open Social 10.3.x

File

modules/custom/social_lets_connect/modules/social_lets_connect_usage/src/Annotation/ShareUsageDataPlugin.php
View source
<?php

namespace Drupal\social_lets_connect_usage\Annotation;

use Drupal\Component\Annotation\Plugin;

/**
 * Defines a Share usage data plugin item annotation object.
 *
 * @see \Drupal\social_lets_connect_usage\Plugin\ShareUsageDataPluginManager
 * @see plugin_api
 *
 * @Annotation
 */
class ShareUsageDataPlugin extends Plugin {

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

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

  /**
   * The key of the setting.
   *
   * @var string
   */
  public $setting;

}

Classes

Namesort descending Description
ShareUsageDataPlugin Defines a Share usage data plugin item annotation object.