clean install

This commit is contained in:
2024-12-10 15:08:16 +01:00
commit e14eb2d8fd
31193 changed files with 3555714 additions and 0 deletions

View File

@@ -0,0 +1,33 @@
<?php
declare(strict_types = 1);
namespace Drupal\migrate_plus\Annotation;
use Drupal\Component\Annotation\Plugin;
/**
* Defines an authentication annotation object.
*
* Plugin namespace: Plugin\migrate_plus\authentication.
*
* @see \Drupal\migrate_plus\AuthenticationPluginBase
* @see \Drupal\migrate_plus\AuthenticationPluginInterface
* @see \Drupal\migrate_plus\AuthenticationPluginManager
* @see plugin_api
*
* @Annotation
*/
class Authentication extends Plugin {
/**
* The plugin ID.
*/
public string $id;
/**
* The title of the plugin.
*/
public string $title;
}

View File

@@ -0,0 +1,33 @@
<?php
declare(strict_types = 1);
namespace Drupal\migrate_plus\Annotation;
use Drupal\Component\Annotation\Plugin;
/**
* Defines a data fetcher annotation object.
*
* Plugin namespace: Plugin\migrate_plus\data_fetcher.
*
* @see \Drupal\migrate_plus\DataFetcherPluginBase
* @see \Drupal\migrate_plus\DataFetcherPluginInterface
* @see \Drupal\migrate_plus\DataFetcherPluginManager
* @see plugin_api
*
* @Annotation
*/
class DataFetcher extends Plugin {
/**
* The plugin ID.
*/
public string $id;
/**
* The title of the plugin.
*/
public string $title;
}

View File

@@ -0,0 +1,35 @@
<?php
declare(strict_types = 1);
namespace Drupal\migrate_plus\Annotation;
use Drupal\Component\Annotation\Plugin;
/**
* Defines a data parser annotation object.
*
* Plugin namespace: Plugin\migrate_plus\data_parser.
*
* @see \Drupal\migrate_plus\DataParserPluginBase
* @see \Drupal\migrate_plus\DataParserPluginInterface
* @see \Drupal\migrate_plus\DataParserPluginManager
* @see plugin_api
*
* @Annotation
*/
class DataParser extends Plugin {
/**
* The plugin ID.
*
* @var string
*/
public string $id;
/**
* The title of the plugin.
*/
public string $title;
}