/**
  * loads provider's own options from the DB
  * 
  * @return array the loaded options array
  * 
  * @access public
  */
 public function loadOptions()
 {
     if (is_null($this->options)) {
         $this->options = $this->dataHandler->loadOptions($this->id);
     }
     return $this->options;
 }