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