Example #1
0
 public function load()
 {
     if (file_exists($this->path)) {
         if ($this->data->load($this->path)) {
             return true;
         }
     }
     $this->createDefaults();
     $this->save();
     return false;
 }