You are here

class UserExportPlugin in Open Social 8.4

Same name and namespace in other branches
  1. 8.9 modules/social_features/social_user_export/src/Annotation/UserExportPlugin.php \Drupal\social_user_export\Annotation\UserExportPlugin
  2. 8.3 modules/social_features/social_user_export/src/Annotation/UserExportPlugin.php \Drupal\social_user_export\Annotation\UserExportPlugin
  3. 8.5 modules/social_features/social_user_export/src/Annotation/UserExportPlugin.php \Drupal\social_user_export\Annotation\UserExportPlugin
  4. 8.6 modules/social_features/social_user_export/src/Annotation/UserExportPlugin.php \Drupal\social_user_export\Annotation\UserExportPlugin
  5. 8.7 modules/social_features/social_user_export/src/Annotation/UserExportPlugin.php \Drupal\social_user_export\Annotation\UserExportPlugin
  6. 8.8 modules/social_features/social_user_export/src/Annotation/UserExportPlugin.php \Drupal\social_user_export\Annotation\UserExportPlugin
  7. 10.3.x modules/social_features/social_user_export/src/Annotation/UserExportPlugin.php \Drupal\social_user_export\Annotation\UserExportPlugin
  8. 10.0.x modules/social_features/social_user_export/src/Annotation/UserExportPlugin.php \Drupal\social_user_export\Annotation\UserExportPlugin
  9. 10.1.x modules/social_features/social_user_export/src/Annotation/UserExportPlugin.php \Drupal\social_user_export\Annotation\UserExportPlugin
  10. 10.2.x modules/social_features/social_user_export/src/Annotation/UserExportPlugin.php \Drupal\social_user_export\Annotation\UserExportPlugin

Defines a User export plugin item annotation object.

Hierarchy

Expanded class hierarchy of UserExportPlugin

See also

\Drupal\social_user_export\Plugin\UserExportPluginManager

Plugin API

37 classes are annotated with UserExportPlugin
OrganizationTag in modules/social_features/social_profile/modules/social_profile_organization_tag/src/Plugin/UserExportPlugin/OrganizationTag.php
Provides a 'OrganizationTag' user export row.
UserAccountName in modules/social_features/social_user_export/src/Plugin/UserExportPlugin/UserAccountName.php
Provides a 'UserAccountName' user export row.
UserAddressAdministrative in modules/social_features/social_user_export/src/Plugin/UserExportPlugin/UserAddressAdministrative.php
Provides a 'UserAddressAdministrative' user export row.
UserAddressCountryCode in modules/social_features/social_user_export/src/Plugin/UserExportPlugin/UserAddressCountryCode.php
Provides a 'UserAddressCountryCode' user export row.
UserAddressLine1 in modules/social_features/social_user_export/src/Plugin/UserExportPlugin/UserAddressLine1.php
Provides a 'UserAddressLine1' user export row.

... See full list

File

modules/social_features/social_user_export/src/Annotation/UserExportPlugin.php, line 15

Namespace

Drupal\social_user_export\Annotation
View source
class UserExportPlugin 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 plugin weight.
   *
   * @var int
   */
  public $weight;

}

Members

Namesort descending Modifiers Type Description Overrides
Plugin::$definition protected property The plugin definition read from the class annotation. 1
Plugin::get public function Gets the value of an annotation. Overrides AnnotationInterface::get 5
Plugin::getClass public function Gets the class of the annotated class. Overrides AnnotationInterface::getClass
Plugin::getId public function Gets the unique ID for this annotated class. Overrides AnnotationInterface::getId
Plugin::getProvider public function Gets the name of the provider of the annotated class. Overrides AnnotationInterface::getProvider
Plugin::parse protected function Parses an annotation into its definition.
Plugin::setClass public function Sets the class of the annotated class. Overrides AnnotationInterface::setClass
Plugin::setProvider public function Sets the name of the provider of the annotated class. Overrides AnnotationInterface::setProvider
Plugin::__construct public function Constructs a Plugin object. 2
UserExportPlugin::$id public property The plugin ID.
UserExportPlugin::$label public property The label of the plugin.
UserExportPlugin::$weight public property The plugin weight.