translations #1
3 changed files with 5 additions and 6 deletions
|
@ -1,5 +1,4 @@
|
|||
name: Agaric Migration Helpers
|
||||
name: Migration Helpers
|
||||
type: module
|
||||
description: Provides helpers to migrate data into modern Drupal.
|
||||
package: Agaric
|
||||
core_version_requirement: ^9 || ^10
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
services:
|
||||
agaric_migration_helpers.field_transformations:
|
||||
migration_helpers.field_transformations:
|
||||
class: Drupal\migration_helpers\MigrationHelperFieldTransformations
|
||||
arguments: ['@entity_type.manager']
|
||||
|
|
|
@ -1,10 +1,10 @@
|
|||
<?php
|
||||
|
||||
namespace Drupal\agaric_migration_helpers;
|
||||
namespace Drupal\migration_helpers;
|
||||
|
||||
use Drupal\Core\Entity\EntityTypeManagerInterface;
|
||||
|
||||
class AgaricMigrationHelperFieldTransformations {
|
||||
class MigrationHelperFieldTransformations {
|
||||
|
||||
/**
|
||||
* The entity type manager.
|
||||
|
@ -14,7 +14,7 @@ class AgaricMigrationHelperFieldTransformations {
|
|||
protected $entityTypeManager;
|
||||
|
||||
/**
|
||||
* Constructs an AgaricMigrationHelperFieldTransformations object.
|
||||
* Constructs an MigrationHelperFieldTransformations object.
|
||||
*/
|
||||
public function __construct(
|
||||
EntityTypeManagerInterface $entity_type_manager
|
||||
|
|
Reference in a new issue