Further modules included.
[yaffs-website] / web / modules / contrib / drupalmoduleupgrader / src / Plugin / DMU / Converter / Functions / CacheSet.php
diff --git a/web/modules/contrib/drupalmoduleupgrader/src/Plugin/DMU/Converter/Functions/CacheSet.php b/web/modules/contrib/drupalmoduleupgrader/src/Plugin/DMU/Converter/Functions/CacheSet.php
new file mode 100644 (file)
index 0000000..d539682
--- /dev/null
@@ -0,0 +1,40 @@
+<?php
+
+namespace Drupal\drupalmoduleupgrader\Plugin\DMU\Converter\Functions;
+
+use Drupal\drupalmoduleupgrader\TargetInterface;
+use Pharborist\Functions\FunctionCallNode;
+use Pharborist\Objects\ClassMethodCallNode;
+
+/**
+ * @Converter(
+ *  id = "cache_set",
+ *  description = @Translation("Rewrites calls to cache_set().")
+ * )
+ */
+class CacheSet extends FunctionCallModifier {
+
+  /**
+   * {@inheritdoc}
+   */
+  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;
+  }
+
+}