graphing/class.graph.php
changeset 44 73f74d395f95
parent 43 ce2e9caf2dfa
equal deleted inserted replaced
43:ce2e9caf2dfa 44:73f74d395f95
   764         $func = "__Load" . ucfirst($key) . "Values";
   764         $func = "__Load" . ucfirst($key) . "Values";
   765         if (method_exists($this, $func)) {
   765         if (method_exists($this, $func)) {
   766           $this->$func($settings);
   766           $this->$func($settings);
   767         }
   767         }
   768       }
   768       }
   769       if (is_array($data['data'])) {
   769       if (isset($data['data']) && is_array($data['data'])) {
   770         $this->data = $data['data'];
   770         $this->data = $data['data'];
   771       }
   771       }
   772     }
   772     }
   773 
   773 
   774     function __LoadGraphValues($data) {
   774     function __LoadGraphValues($data) {