Mercurial > hg > cmmr2012-drupal-site
comparison modules/contrib/migrate_plus/src/Annotation/DataFetcher.php @ 0:c75dbcec494b
Initial commit from drush-created site
author | Chris Cannam |
---|---|
date | Thu, 05 Jul 2018 14:24:15 +0000 |
parents | |
children | a9cd425dd02b |
comparison
equal
deleted
inserted
replaced
-1:000000000000 | 0:c75dbcec494b |
---|---|
1 <?php | |
2 | |
3 namespace Drupal\migrate_plus\Annotation; | |
4 | |
5 use Drupal\Component\Annotation\Plugin; | |
6 | |
7 /** | |
8 * Defines a data fetcher annotation object. | |
9 * | |
10 * Plugin Namespace: Plugin\migrate_plus\data_fetcher | |
11 * | |
12 * @see \Drupal\migrate_plus\DataFetcherPluginBase | |
13 * @see \Drupal\migrate_plus\DataFetcherPluginInterface | |
14 * @see \Drupal\migrate_plus\DataFetcherPluginManager | |
15 * @see plugin_api | |
16 * | |
17 * @Annotation | |
18 */ | |
19 class DataFetcher extends Plugin { | |
20 | |
21 /** | |
22 * The plugin ID. | |
23 * | |
24 * @var string | |
25 */ | |
26 public $id; | |
27 | |
28 /** | |
29 * The title of the plugin. | |
30 * | |
31 * @var \Drupal\Core\Annotation\Translation | |
32 * | |
33 * @ingroup plugin_translatable | |
34 */ | |
35 public $title; | |
36 | |
37 } |