RefreshDatabaseCache.php
[Pman.Core] / RefreshDatabaseCache.php
index e69de29..836c003 100644 (file)
@@ -0,0 +1,41 @@
+<?php
+
+/**
+ * 
+ * this is technically a cli wrapper for the generator..
+ * 
+ * we will test it on the web initially..
+ * 
+ * 
+ */
+require_once 'Pman.php';
+class Pman_Core_RefreshDatabaseCache extends Pman
+{     
+    static $cli_desc = "Refresh the database schema cache";
+   
+    var $cli = false;
+    function getAuth() {
+        
+        
+        $ff = HTML_FlexyFramework::get();
+        if (!empty($ff->cli)) {
+            $this->cli = true;
+            return true;
+        }
+        die("cli only"); 
+    }
+     
+    function get($args, $opts)
+    {
+        //print_r($opts);exit;
+        
+        
+        // technically it would be good to trash the cached ini files here.. 
+        // however we can not really do that, as the ownships are off..
+        //we can however regen our own files..
+        HTML_FlexyFramework::get()->generateDataobjectsCache(true);
+        
+        die("done!");
+    }
+    
+}
\ No newline at end of file