Fix #5620 - hide /admin.php and index.php
authorAlan Knowles <alan@roojs.com>
Thu, 17 Jan 2019 06:57:15 +0000 (14:57 +0800)
committerAlan Knowles <alan@roojs.com>
Thu, 17 Jan 2019 06:57:15 +0000 (14:57 +0800)
Bjs.php [new file with mode: 0644]
UpdateDatabase.php
_translations_/Bjs.php [new file with mode: 0644]

diff --git a/Bjs.php b/Bjs.php
new file mode 100644 (file)
index 0000000..1950d84
--- /dev/null
+++ b/Bjs.php
@@ -0,0 +1,71 @@
+<?php
+
+/**
+ * parse BJS files .... 
+ *
+ * currenly only extracts $this->fields from the list..
+ */
+
+class Pman_Core_Bjs {
+    
+    var $json;
+    var $fields = array();
+    
+    function __construct($file)
+    {
+        
+        $this->json = json_decode(file_get_contents($file));
+        $this->iterateFields($this->json->items);
+    }
+    
+    function iterateFields($ar)
+    {
+        foreach($ar as $o) {
+            
+            switch ($o->xtype) {
+                case "ComboBox":                
+                    $this->fields[] = $o->{'String hiddenName'};
+                    // fall throught..
+                    $k = isset($o->{'String name'}) ? 'String name' : 'string name';
+                    
+                    if (!isset($o->{$k})) {
+                        break; // allowed to not exit.
+                    }
+                    $this->fields[] = $o->{$k};
+                    
+                case "Input":
+                case "TextArea":
+                case "CheckBox":
+                case "DateField":
+                case "Radio":
+                case "RadioSet":                    
+                case "PhoneInput":
+                case "NumberField":
+                    $k = isset($o->{'String name'}) ? 'String name' : 'string name';
+                    
+                    if (!isset($o->{$k})) {
+                        echo "missing string name";
+                        print_r($o);exit;
+                    }
+                    $this->fields[] = $o->{$k};
+                    break;
+                
+                case "MoneyField":
+                    $k = isset($o->{'String currencyName'}) ? 'String currencyName' : 'string currencyName';
+                    
+                    $this->fields[] = $o->{$k};
+                    $k = isset($o->{'String name'}) ? 'String name' : 'string name';
+                    $this->fields[] = $o->{$k};
+                    break;
+                default:
+                    if (isset($o->items)) {
+                        $this->iterateFields($o->items);
+                    }
+            }
+             
+        }
+        
+    }
+    
+    
+}
index 2b2a03f..19c0dd9 100644 (file)
@@ -1277,10 +1277,13 @@ class Pman_Core_UpdateDatabase extends Pman
     
     function clearApacheDataobjectsCache()
     {
-        echo "Clearing Database Cache\n";
+        
         // this needs to clear it's own cache along with remote one..
   
         $url = "http://localhost{$this->local_base_url}/Core/RefreshDatabaseCache";
+        
+        echo "Clearing Database Cache : http://localhost{$this->local_base_url}/Core/RefreshDatabaseCache\n";
+        
         $response = $this->curl($url);
         
         $json = json_decode($response, true);
@@ -1297,7 +1300,7 @@ class Pman_Core_UpdateDatabase extends Pman
     
     function clearApacheAssetCache()
     {
-        echo "Clearing Asset Cache\n";
+        echo "Clearing Asset Cache : http://localhost{$this->local_base_url}/Core/Asset\n";
         $response = $this->curl(
             "http://localhost{$this->local_base_url}/Core/Asset",
             array( '_clear_cache' => 1 ,'returnHTML' => 'NO' ),
diff --git a/_translations_/Bjs.php b/_translations_/Bjs.php
new file mode 100644 (file)
index 0000000..a69223c
--- /dev/null
@@ -0,0 +1,71 @@
+<?php
+
+/**
+ * parse BJS files .... 
+ *
+ *
+ */
+
+class Pman_Core_Bjs {
+    
+    var $json;
+    var $fields = array();
+    
+    static function formFields($file)
+    {
+        
+        $this->json = json_decode(file_get_contents($file));
+        $this->iterateFields($this->json->items);
+    }
+    
+    function iterateFields($ar)
+    {
+        foreach($ar as $o) {
+            
+            switch ($o->xtype) {
+                case "ComboBox":                
+                    $this->fields[] = $o->{'String hiddenName'};
+                    // fall throught..
+                    $k = isset($o->{'String name'}) ? 'String name' : 'string name';
+                    
+                    if (!isset($o->{$k})) {
+                        break; // allowed to not exit.
+                    }
+                    $this->fields[] = $o->{$k};
+                    
+                case "Input":
+                case "TextArea":
+                case "CheckBox":
+                case "DateField":
+                case "Radio":
+                case "RadioSet":                    
+                case "PhoneInput":
+                case "NumberField":
+                    $k = isset($o->{'String name'}) ? 'String name' : 'string name';
+                    
+                    if (!isset($o->{$k})) {
+                        echo "missing string name";
+                        print_r($o);exit;
+                    }
+                    $this->fields[] = $o->{$k};
+                    break;
+                
+                case "MoneyField":
+                    $k = isset($o->{'String currencyName'}) ? 'String currencyName' : 'string currencyName';
+                    
+                    $this->fields[] = $o->{$k};
+                    $k = isset($o->{'String name'}) ? 'String name' : 'string name';
+                    $this->fields[] = $o->{$k};
+                    break;
+                default:
+                    if (isset($o->items)) {
+                        $this->fields = $this->iterateFields($o->items);
+                    }
+            }
+             
+        }
+        
+    }
+    
+    
+}