public function CacheSet::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/ CacheSet.php, line 20
Class
- CacheSet
- Plugin annotation @Converter( id = "cache_set", description = @Translation("Rewrites calls to cache_set().") )
Namespace
Drupal\drupalmoduleupgrader\Plugin\DMU\Converter\FunctionsCode
public function rewrite(FunctionCallNode $call, TargetInterface $target) {
$arguments = $call
->getArguments();
$cache = ClassMethodCallNode::create('\\Drupal', 'cache');
if (sizeof($arguments) > 2) {
$cache
->appendArgument(clone $arguments[2]);
}
$set = $cache
->appendMethodCall('set')
->appendArgument(clone $arguments[0])
->appendArgument(clone $arguments[1]);
// Include the expiration time, if given.
if (sizeof($arguments) == 4) {
$set
->appendArgument(clone $arguments[3]);
}
return $set;
}