RefreshDatabaseCache.php
[Pman.Core] / RefreshDatabaseCache.php
index c9ddc41..1a9452b 100644 (file)
@@ -9,13 +9,17 @@
  * 
  */
 require_once 'Pman.php';
+
 class Pman_Core_RefreshDatabaseCache extends Pman
 {     
     static $cli_desc = "Refresh the database schema cache";
    
     var $cli = false;
-    function getAuth() {
-        
+    function getAuth() 
+    {
+        if($_SERVER['HTTP_HOST'] == 'localhost'){
+            return true;
+        }
         
         $ff = HTML_FlexyFramework::get();
         if (!empty($ff->cli)) {
@@ -33,7 +37,7 @@ class Pman_Core_RefreshDatabaseCache extends Pman
     
     }
      
-    function get($args, $opts)
+    function get($args, $opts=array())
     {
         //print_r($opts);exit;
         
@@ -43,9 +47,11 @@ class Pman_Core_RefreshDatabaseCache extends Pman
         //we can however regen our own files..
         //DB_DataObject::debugLevel(1);
         //HTML_FlexyFramework::get()->debug = 1;
+        
         HTML_FlexyFramework::get()->generateDataobjectsCache(true);
         
-        die("done!");
+        $this->jok('DONE');
+        
     }
     
 }
\ No newline at end of file