Beispiel #1
0
 /**
  *
  * @param string $pKey
  * @param string $pValue
  * @return void
  */
 public function set_prop($pKey, $pValue)
 {
     switch ($pKey) {
         case 'align':
             return $this->set_align($pValue);
             break;
         default:
             return parent::set_prop($pKey, $pValue);
     }
 }
Beispiel #2
0
 /**
  *
  * @param string $pKey
  * @param string $pValue
  * @return void
  */
 public function set_prop($pKey, $pValue)
 {
     switch ($pKey) {
         case 'chosen_value':
             return $this->set_chosen_value($pValue);
             break;
         default:
             return parent::set_prop($pKey, $pValue);
     }
 }