maj syntaxe accolades, maj jQuery, correction layout contact
[mtweb] / web / app / data / modules / share / mw_data_out_config.php
index bdd8ead..173efbe 100644 (file)
@@ -1,19 +1,18 @@
 <?php
 
-  class mw_data_out_config extends mw_data
-  {
+  class mw_data_out_config extends mw_data{
 
-    function out_config()
-    { $env = $this->env();
+    function out_config(){
+      $env = $this->env();
       $config = array();
-      if($env->out_file_exists("config.xml"))
-      { if($this->buffer = file_get_contents($env->out_file("config.xml")))
-        { if(!isset($this->sxml)) $this->sxml = new sxml();
+      if($env->out_file_exists("config.xml")){
+        if($this->buffer = file_get_contents($env->out_file("config.xml"))){
+          if(!isset($this->sxml)) $this->sxml = new sxml();
           $this->sxml->parse($this->buffer);
           $this->buffer = $this->sxml->data["config"][0];
-          if($this->buffer["subs"]) foreach($this->buffer["subs"] as $key => $value)
-          { $config[$key] = array
-            ( "type" => $value[0]["attrs"]["type"],
+          if($this->buffer["subs"]) foreach($this->buffer["subs"] as $key => $value){
+            $config[$key] = array(
+              "type" => $value[0]["attrs"]["type"],
               "default" => $value[0]["attrs"]["default"],
               "text" => $value[0]["data"]
             );