예제 #1
0
 /**
  * @see FormElement::renderInput()
  *
  * @param array $params
  * @return string
  */
 public function renderInput($params = null)
 {
     parent::renderInput($params);
     if ($this->getHasInvitation()) {
         $this->addAttribute('value', $this->getInvitation());
     }
     return UTIL_HtmlTag::generateTag('input', $this->attributes);
 }
예제 #2
0
 /**
  * @see FormElement::renderInput()
  *
  * @param array $params
  * @return string
  */
 public function renderInput($params = null)
 {
     parent::renderInput($params);
     return UTIL_HtmlTag::generateTag('input', $this->attributes);
 }