Mercurial > hg > cmmr2012-drupal-site
annotate modules/contrib/migrate_plus/src/Annotation/Authentication.php @ 5:12f9dff5fda9 tip
Update to Drupal core 8.7.1
author | Chris Cannam |
---|---|
date | Thu, 09 May 2019 15:34:47 +0100 |
parents | a9cd425dd02b |
children |
rev | line source |
---|---|
Chris@4 | 1 <?php |
Chris@4 | 2 |
Chris@4 | 3 namespace Drupal\migrate_plus\Annotation; |
Chris@4 | 4 |
Chris@4 | 5 use Drupal\Component\Annotation\Plugin; |
Chris@4 | 6 |
Chris@4 | 7 /** |
Chris@4 | 8 * Defines an authentication annotation object. |
Chris@4 | 9 * |
Chris@4 | 10 * Plugin namespace: Plugin\migrate_plus\authentication. |
Chris@4 | 11 * |
Chris@4 | 12 * @see \Drupal\migrate_plus\AuthenticationPluginBase |
Chris@4 | 13 * @see \Drupal\migrate_plus\AuthenticationPluginInterface |
Chris@4 | 14 * @see \Drupal\migrate_plus\AuthenticationPluginManager |
Chris@4 | 15 * @see plugin_api |
Chris@4 | 16 * |
Chris@4 | 17 * @Annotation |
Chris@4 | 18 */ |
Chris@4 | 19 class Authentication extends Plugin { |
Chris@4 | 20 |
Chris@4 | 21 /** |
Chris@4 | 22 * The plugin ID. |
Chris@4 | 23 * |
Chris@4 | 24 * @var string |
Chris@4 | 25 */ |
Chris@4 | 26 public $id; |
Chris@4 | 27 |
Chris@4 | 28 /** |
Chris@4 | 29 * The title of the plugin. |
Chris@4 | 30 * |
Chris@4 | 31 * @var \Drupal\Core\Annotation\Translation |
Chris@4 | 32 * |
Chris@4 | 33 * @ingroup plugin_translatable |
Chris@4 | 34 */ |
Chris@4 | 35 public $title; |
Chris@4 | 36 |
Chris@4 | 37 } |