You are here

HookFieldAttachCreateBundle.php in Drupal 7 to 8/9 Module Upgrader 8

File

src/Plugin/DMU/Converter/HookFieldAttachCreateBundle.php
View source
<?php

namespace Drupal\drupalmoduleupgrader\Plugin\DMU\Converter;

use Drupal\drupalmoduleupgrader\ConverterBase;
use Drupal\drupalmoduleupgrader\TargetInterface;

/**
 * @Converter(
 *  id = "hook_field_attach_create_bundle",
 *  description = @Translation("Renames hook_field_attach_create_bundle()."),
 *  hook = "hook_field_attach_create_bundle"
 * )
 */
class HookFieldAttachCreateBundle extends ConverterBase {

  /**
   * {@inheritdoc}
   */
  public function convert(TargetInterface $target) {
    $hook = $target
      ->getIndexer('function')
      ->get($this->pluginDefinition['hook'])
      ->setName($target
      ->id() . '_entity_bundle_create');
    $target
      ->save($hook);
  }

}

Classes

Namesort descending Description
HookFieldAttachCreateBundle Plugin annotation @Converter( id = "hook_field_attach_create_bundle", description = @Translation("Renames hook_field_attach_create_bundle()."), hook = "hook_field_attach_create_bundle" )