class PSR4 in Drupal 7 to 8/9 Module Upgrader 8
Same name in this branch
- 8 src/Plugin/DMU/Analyzer/PSR4.php \Drupal\drupalmoduleupgrader\Plugin\DMU\Analyzer\PSR4
- 8 src/Plugin/DMU/Converter/PSR4.php \Drupal\drupalmoduleupgrader\Plugin\DMU\Converter\PSR4
- 8 src/Plugin/DMU/Fixer/PSR4.php \Drupal\drupalmoduleupgrader\Plugin\DMU\Fixer\PSR4
Plugin annotation
@Converter(
 id = "PSR4",
 description = @Translation("Moves classes into PSR-4 directory structure.")
)
Hierarchy
- class \Drupal\Component\Plugin\PluginBase implements DerivativeInspectionInterface, PluginInspectionInterface- class \Drupal\Core\Plugin\PluginBase uses DependencySerializationTrait, MessengerTrait, StringTranslationTrait- class \Drupal\drupalmoduleupgrader\PluginBase implements ContainerFactoryPluginInterface- class \Drupal\drupalmoduleupgrader\ConverterBase implements ConverterInterface- class \Drupal\drupalmoduleupgrader\Plugin\DMU\Converter\PSR4
 
 
- class \Drupal\drupalmoduleupgrader\ConverterBase implements ConverterInterface
 
- class \Drupal\drupalmoduleupgrader\PluginBase implements ContainerFactoryPluginInterface
 
- class \Drupal\Core\Plugin\PluginBase uses DependencySerializationTrait, MessengerTrait, StringTranslationTrait
Expanded class hierarchy of PSR4
File
- src/Plugin/ DMU/ Converter/ PSR4.php, line 17 
Namespace
Drupal\drupalmoduleupgrader\Plugin\DMU\ConverterView source
class PSR4 extends ConverterBase {
  /**
   * {@inheritdoc}
   */
  public function isExecutable(TargetInterface $target) {
    return (bool) $target
      ->getIndexer('class')
      ->getQuery()
      ->countQuery()
      ->execute();
  }
  /**
   * {@inheritdoc}
   */
  public function convert(TargetInterface $target) {
    $target
      ->getIndexer('class')
      ->getAll()
      ->each(function (ClassNode $class) use ($target) {
      $this
        ->writeClass($target, self::toPSR4($target, $class));
    });
  }
  /**
   * Utility method to PSR4-ify a class. It'll move the class into its own file
   * in the given module's namespace. The class is modified in-place, so you
   * should clone it before calling this function if you want to make a PSR-4
   * *copy* of it.
   *
   * @param \Drupal\drupalmoduleupgrader\TargetInterface $target
   *   The module which will own the class.
   * @param \Pharborist\ClassNode $class
   *   The class to modify.
   *
   * @return \Pharborist\ClassNode
   *   The modified class, returned for convenience.
   */
  public static function toPSR4(TargetInterface $target, ClassNode $class) {
    $ns = 'Drupal\\' . $target
      ->id();
    RootNode::create($ns)
      ->getNamespace($ns)
      ->append($class
      ->remove());
    WhitespaceNode::create("\n\n")
      ->insertBefore($class);
    return $class;
  }
}Members
| Name   | Modifiers | Type | Description | Overrides | 
|---|---|---|---|---|
| ConverterBase:: | protected | function | Builds a FIXME notice using either the text in the plugin definition, or passed-in text. | |
| ConverterBase:: | constant | |||
| ConverterBase:: | protected | function | Executes the target module's implementation of the specified hook, and returns the result. | |
| ConverterBase:: | protected | function | Creates an empty implementation of a hook. | |
| ConverterBase:: | constant | |||
| ConverterBase:: | protected | function | Parses a generated class into a syntax tree. | |
| ConverterBase:: | protected | function | Parametrically rewrites a function. | |
| ConverterBase:: | public | function | Writes a file to the target module's directory. | |
| ConverterBase:: | public | function | Writes a class to the target module's PSR-4 root. | |
| ConverterBase:: | protected | function | Writes out arbitrary data in YAML format. | |
| ConverterBase:: | protected | function | Writes a service definition to the target module's services.yml file. | |
| DependencySerializationTrait:: | protected | property | An array of entity type IDs keyed by the property name of their storages. | |
| DependencySerializationTrait:: | protected | property | An array of service IDs keyed by property name used for serialization. | |
| DependencySerializationTrait:: | public | function | 1 | |
| DependencySerializationTrait:: | public | function | 2 | |
| MessengerTrait:: | protected | property | The messenger. | 29 | 
| MessengerTrait:: | public | function | Gets the messenger. | 29 | 
| MessengerTrait:: | public | function | Sets the messenger. | |
| PluginBase:: | protected | property | Configuration information passed into the plugin. | 1 | 
| PluginBase:: | protected | property | ||
| PluginBase:: | protected | property | The plugin implementation definition. | 1 | 
| PluginBase:: | protected | property | The plugin_id. | |
| PluginBase:: | public static | function | Creates an instance of the plugin. Overrides ContainerFactoryPluginInterface:: | 2 | 
| PluginBase:: | constant | A string which is used to separate base plugin IDs from the derivative ID. | ||
| PluginBase:: | public | function | Gets the base_plugin_id of the plugin instance. Overrides DerivativeInspectionInterface:: | |
| PluginBase:: | public | function | Gets the derivative_id of the plugin instance. Overrides DerivativeInspectionInterface:: | |
| PluginBase:: | public | function | Gets the definition of the plugin implementation. Overrides PluginInspectionInterface:: | 3 | 
| PluginBase:: | public | function | Gets the plugin_id of the plugin instance. Overrides PluginInspectionInterface:: | |
| PluginBase:: | public | function | Determines if the plugin is configurable. | |
| PluginBase:: | public | function | Constructs a \Drupal\Component\Plugin\PluginBase object. Overrides PluginBase:: | 11 | 
| PSR4:: | public | function | Performs required conversions. Overrides ConverterInterface:: | |
| PSR4:: | public | function | Returns if this conversion applies to the target module. If FALSE,
the convert() method will not be called. Overrides ConverterBase:: | |
| PSR4:: | public static | function | Utility method to PSR4-ify a class. It'll move the class into its own file in the given module's namespace. The class is modified in-place, so you should clone it before calling this function if you want to make a PSR-4 *copy* of it. | |
| StringTranslationTrait:: | protected | property | The string translation service. | 1 | 
| StringTranslationTrait:: | protected | function | Formats a string containing a count of items. | |
| StringTranslationTrait:: | protected | function | Returns the number of plurals supported by a given language. | |
| StringTranslationTrait:: | protected | function | Gets the string translation service. | |
| StringTranslationTrait:: | public | function | Sets the string translation service to use. | 2 | 
| StringTranslationTrait:: | protected | function | Translates a string to the current language or to a given language. | 
