Further modules included.
[yaffs-website] / web / modules / contrib / drupalmoduleupgrader / src / Plugin / DMU / Converter / Functions / CToolsObjectCacheSet.php
diff --git a/web/modules/contrib/drupalmoduleupgrader/src/Plugin/DMU/Converter/Functions/CToolsObjectCacheSet.php b/web/modules/contrib/drupalmoduleupgrader/src/Plugin/DMU/Converter/Functions/CToolsObjectCacheSet.php
new file mode 100644 (file)
index 0000000..b122060
--- /dev/null
@@ -0,0 +1,35 @@
+<?php
+
+namespace Drupal\drupalmoduleupgrader\Plugin\DMU\Converter\Functions;
+
+use Drupal\drupalmoduleupgrader\TargetInterface;
+use Pharborist\Functions\FunctionCallNode;
+use Pharborist\Objects\ClassMethodCallNode;
+
+/**
+ * @Converter(
+ *  id = "ctools_object_cache_set",
+ *  description = @Translation("Rewrites calls to ctools_object_cache_set().")
+ * )
+ */
+class CToolsObjectCacheSet extends FunctionCallModifier {
+
+  /**
+   * {@inheritdoc}
+   */
+  public function rewrite(FunctionCallNode $call, TargetInterface $target) {
+    $arguments = $call->getArguments()->toArray();
+    array_shift($arguments);
+
+    if (sizeof($arguments) == 3) {
+      array_pop($arguments);
+    }
+
+    return ClassMethodCallNode::create('\Drupal', 'service')
+      ->appendArgument('user.tempstore')
+      ->appendMethodCall('set')
+      ->appendArgument($arguments[0])
+      ->appendArgument($arguments[1]);
+  }
+
+}