You are here

public function FieldViewField::rewrite in Drupal 7 to 8/9 Module Upgrader 8

Tries to rewrite the original function call.

Parameters

\Pharborist\Functions\FunctionCallNode $call: The original function call.

\Drupal\drupalmoduleupgrader\TargetInterface $target: The target module.

Return value

\Pharborist\Node|null If the original function call is returned (determined by object identity), the function call is not replaced. If a different node is returned, it will replace the original call. And if nothing is returned, the original call is commented out with a FIXME.

Overrides FunctionCallModifier::rewrite

File

src/Plugin/DMU/Converter/Functions/FieldViewField.php, line 22

Class

FieldViewField
Plugin annotation @Converter( id = "field_view_field", description = @Translation("Rewrites calls to field_view_field().") )

Namespace

Drupal\drupalmoduleupgrader\Plugin\DMU\Converter\Functions

Code

public function rewrite(FunctionCallNode $call, TargetInterface $target) {
  $arguments = $call
    ->getArguments();
  $property = $arguments[2] instanceof StringNode ? $arguments[2]
    ->toValue() : clone $arguments[2];
  $rewritten = ObjectMethodCallNode::create(Parser::parseExpression($arguments[1] . '->' . $property), 'view');
  if (sizeof($arguments) >= 4) {
    $rewritten
      ->appendArgument(clone $arguments[3]);
  }
  return $rewritten;
}