Mention.php in Open Social 10.1.x
Same filename and directory in other branches
- 8.9 modules/custom/mentions/src/Annotation/Mention.php
- 8 modules/custom/mentions/src/Annotation/Mention.php
- 8.2 modules/custom/mentions/src/Annotation/Mention.php
- 8.3 modules/custom/mentions/src/Annotation/Mention.php
- 8.4 modules/custom/mentions/src/Annotation/Mention.php
- 8.5 modules/custom/mentions/src/Annotation/Mention.php
- 8.6 modules/custom/mentions/src/Annotation/Mention.php
- 8.7 modules/custom/mentions/src/Annotation/Mention.php
- 8.8 modules/custom/mentions/src/Annotation/Mention.php
- 10.3.x modules/custom/mentions/src/Annotation/Mention.php
- 10.0.x modules/custom/mentions/src/Annotation/Mention.php
- 10.2.x modules/custom/mentions/src/Annotation/Mention.php
Namespace
Drupal\mentions\AnnotationFile
modules/custom/mentions/src/Annotation/Mention.phpView source
<?php
namespace Drupal\mentions\Annotation;
use Drupal\Component\Annotation\Plugin;
/**
* Defines Mention Type annotation object.
*
* @Annotation
*/
class Mention extends Plugin {
/**
* The plugin ID.
*
* @var string
*/
public $id;
/**
* The name of the flavor.
*
* @var \Drupal\Core\Annotation\Translation
*
* @ingroup plugin_translatable
*/
public $name;
}