Mercurial > hg > isophonics-drupal-site
view core/lib/Drupal/Core/Annotation/Mail.php @ 17:129ea1e6d783
Update, including to Drupal core 8.6.10
author | Chris Cannam |
---|---|
date | Thu, 28 Feb 2019 13:21:36 +0000 |
parents | 4c8ae668cc8c |
children |
line wrap: on
line source
<?php namespace Drupal\Core\Annotation; use Drupal\Component\Annotation\Plugin; /** * Defines a Mail annotation object. * * Plugin Namespace: Plugin\Mail * * For a working example, see \Drupal\Core\Mail\Plugin\Mail\PhpMail * * @see \Drupal\Core\Mail\MailInterface * @see \Drupal\Core\Mail\MailManager * @see plugin_api * * @Annotation */ class Mail extends Plugin { /** * The plugin ID. * * @var string */ public $id; /** * The human-readable name of the mail plugin. * * @var \Drupal\Core\Annotation\Translation * * @ingroup plugin_translatable */ public $label; /** * A short description of the mail plugin. * * @var \Drupal\Core\Annotation\Translation * * @ingroup plugin_translatable */ public $description; }