Bjs.php
[Pman.Core] / Bjs.php
diff --git a/Bjs.php b/Bjs.php
index 1950d84..d313779 100644 (file)
--- a/Bjs.php
+++ b/Bjs.php
@@ -10,12 +10,13 @@ class Pman_Core_Bjs {
     
     var $json;
     var $fields = array();
-    
+    var $cols = array();
     function __construct($file)
     {
         
         $this->json = json_decode(file_get_contents($file));
         $this->iterateFields($this->json->items);
+        $this->iterateColumns($this->json->items);
     }
     
     function iterateFields($ar)
@@ -66,6 +67,10 @@ class Pman_Core_Bjs {
         }
         
     }
-    
+    function iterateColumns($ar)
+    {
+        foreach($ar as $o) {
+            
+     
     
 }