You are here

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

File

src/Plugin/DMU/Converter/Functions/CommentLoad.php
View source
<?php

namespace Drupal\drupalmoduleupgrader\Plugin\DMU\Converter\Functions;

use Drupal\drupalmoduleupgrader\TargetInterface;
use Pharborist\Functions\FunctionCallNode;
use Pharborist\Objects\ClassMethodCallNode;

/**
 * @Converter(
 *  id = "comment_load",
 *  description = @Translation("Rewrites calls to comment_load()."),
 *  fixme = @Translation("comment_load() is now EntityStorageInterface::load().")
 * )
 */
class CommentLoad extends FunctionCallModifier {

  /**
   * {@inheritdoc}
   */
  public function rewrite(FunctionCallNode $call, TargetInterface $target) {
    $arguments = $call
      ->getArguments();

    // If there were three arguments, the call is affecting the internal
    // comment_load() cache. Unfortunately, it's pretty much impossible to
    // reliably determine whether or not they wanted to reset the cache,
    // so let's just leave a FIXME.
    if (sizeof($arguments) == 2) {
      $this
        ->buildFixMe('To reset the comment cache, use EntityStorageInterface::resetCache().')
        ->insertBefore($call);
    }
    return ClassMethodCallNode::create('\\Drupal', 'entityTypeManager')
      ->appendMethodCall('getStorage')
      ->appendArgument('comment')
      ->appendMethodCall('load')
      ->appendArgument(clone $arguments[0]);
  }

}

Classes

Namesort descending Description
CommentLoad Plugin annotation @Converter( id = "comment_load", description = @Translation("Rewrites calls to comment_load()."), fixme = @Translation("comment_load() is now EntityStorageInterface::load().") )