Exemplo n.º 1
0
 /**
  * loads the provider name from the DB
  *
  * @return string, the loaded name
  *
  * @access public
  */
 public function loadProviderName()
 {
     if (is_null($this->name)) {
         $this->name = $this->dataHandler->loadProviderName($this->id);
     }
     return $this->name;
 }