You are here

class DemoContent in Open Social 8.9

Same name in this branch
  1. 8.9 modules/custom/social_demo/src/DemoContent.php \Drupal\social_demo\DemoContent
  2. 8.9 modules/custom/social_demo/src/Annotation/DemoContent.php \Drupal\social_demo\Annotation\DemoContent
Same name and namespace in other branches
  1. 8 modules/custom/social_demo/src/Annotation/DemoContent.php \Drupal\social_demo\Annotation\DemoContent
  2. 8.2 modules/custom/social_demo/src/Annotation/DemoContent.php \Drupal\social_demo\Annotation\DemoContent
  3. 8.3 modules/custom/social_demo/src/Annotation/DemoContent.php \Drupal\social_demo\Annotation\DemoContent
  4. 8.4 modules/custom/social_demo/src/Annotation/DemoContent.php \Drupal\social_demo\Annotation\DemoContent
  5. 8.5 modules/custom/social_demo/src/Annotation/DemoContent.php \Drupal\social_demo\Annotation\DemoContent
  6. 8.6 modules/custom/social_demo/src/Annotation/DemoContent.php \Drupal\social_demo\Annotation\DemoContent
  7. 8.7 modules/custom/social_demo/src/Annotation/DemoContent.php \Drupal\social_demo\Annotation\DemoContent
  8. 8.8 modules/custom/social_demo/src/Annotation/DemoContent.php \Drupal\social_demo\Annotation\DemoContent
  9. 10.3.x modules/custom/social_demo/src/Annotation/DemoContent.php \Drupal\social_demo\Annotation\DemoContent
  10. 10.0.x modules/custom/social_demo/src/Annotation/DemoContent.php \Drupal\social_demo\Annotation\DemoContent
  11. 10.1.x modules/custom/social_demo/src/Annotation/DemoContent.php \Drupal\social_demo\Annotation\DemoContent
  12. 10.2.x modules/custom/social_demo/src/Annotation/DemoContent.php \Drupal\social_demo\Annotation\DemoContent

Defines a DemoContent annotation object.

Hierarchy

Expanded class hierarchy of DemoContent

15 classes are annotated with DemoContent
Book in modules/custom/social_demo/src/Plugin/DemoContent/Book.php
Book Plugin for demo content.
Comment in modules/custom/social_demo/src/Plugin/DemoContent/Comment.php
Comment Plugin for demo content.
Event in modules/custom/social_demo/src/Plugin/DemoContent/Event.php
Event Plugin for demo content.
EventEnrollment in modules/custom/social_demo/src/Plugin/DemoContent/EventEnrollment.php
EventEnrollment Plugin for demo content.
EventType in modules/custom/social_demo/src/Plugin/DemoContent/EventType.php
EventType Plugin for demo content.

... See full list

File

modules/custom/social_demo/src/Annotation/DemoContent.php, line 12

Namespace

Drupal\social_demo\Annotation
View source
class DemoContent extends Plugin {

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

  /**
   * The content type label.
   *
   * @var string
   */
  public $label;

  /**
   * The source file.
   *
   * @var string
   */
  public $source;

  /**
   * The entity type id.
   *
   * @var string
   */
  public $entityType;

}

Members

Namesort descending Modifiers Type Description Overrides
DemoContent::$entityType public property The entity type id.
DemoContent::$id public property The plugin ID.
DemoContent::$label public property The content type label.
DemoContent::$source public property The source file.
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