UserSave.php in Drupal 7 to 8/9 Module Upgrader 8
File
src/Plugin/DMU/Converter/Functions/UserSave.php
View source
<?php
namespace Drupal\drupalmoduleupgrader\Plugin\DMU\Converter\Functions;
use Drupal\drupalmoduleupgrader\TargetInterface;
use Pharborist\Functions\FunctionCallNode;
use Pharborist\Objects\ObjectMethodCallNode;
class UserSave extends FunctionCallModifier {
public function rewrite(FunctionCallNode $call, TargetInterface $target) {
$arguments = $call
->getArguments();
if (sizeof($arguments) == 1) {
return ObjectMethodCallNode::create(clone $arguments[0], 'save');
}
}
}
Classes
Name |
Description |
UserSave |
Plugin annotation
@Converter(
id = "user_save",
description = @Translation("Rewrites calls to user_save()."),
fixme = @Translation("user_save() is now a method of the user entity.")
) |