DemoContent.php in Open Social 10.0.x
Same filename in this branch
Same filename and directory in other branches
- 8.9 modules/custom/social_demo/src/Annotation/DemoContent.php
- 8 modules/custom/social_demo/src/Annotation/DemoContent.php
- 8.2 modules/custom/social_demo/src/Annotation/DemoContent.php
- 8.3 modules/custom/social_demo/src/Annotation/DemoContent.php
- 8.4 modules/custom/social_demo/src/Annotation/DemoContent.php
- 8.5 modules/custom/social_demo/src/Annotation/DemoContent.php
- 8.6 modules/custom/social_demo/src/Annotation/DemoContent.php
- 8.7 modules/custom/social_demo/src/Annotation/DemoContent.php
- 8.8 modules/custom/social_demo/src/Annotation/DemoContent.php
- 10.3.x modules/custom/social_demo/src/Annotation/DemoContent.php
- 10.1.x modules/custom/social_demo/src/Annotation/DemoContent.php
- 10.2.x modules/custom/social_demo/src/Annotation/DemoContent.php
Namespace
Drupal\social_demo\AnnotationFile
modules/custom/social_demo/src/Annotation/DemoContent.phpView source
<?php
namespace Drupal\social_demo\Annotation;
use Drupal\Component\Annotation\Plugin;
/**
* Defines a DemoContent annotation object.
*
* @Annotation
*/
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;
}
Classes
Name | Description |
---|---|
DemoContent | Defines a DemoContent annotation object. |