public function CToolsObjectCacheGet::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/ CToolsObjectCacheGet.php, line 20
Class
- CToolsObjectCacheGet
- Plugin annotation @Converter( id = "ctools_object_cache_get", description = @Translation("Rewrites calls to ctools_object_cache_get().") )
Namespace
Drupal\drupalmoduleupgrader\Plugin\DMU\Converter\FunctionsCode
public function rewrite(FunctionCallNode $call, TargetInterface $target) {
return ClassMethodCallNode::create('\\Drupal', 'service')
->appendArgument('user.tempstore')
->appendMethodCall('get')
->appendArgument(clone $call
->getArgumentList()
->getItem(1));
}