getHtml() public méthode

public getHtml ( )
Exemple #1
0
 public function getHtml()
 {
     $temp = $this->value;
     $this->value = '';
     $input_html = parent::getHtml();
     $this->value = $temp;
     $_SESSION['Formidable_Captcha'] = $this->getCaptchaValue();
     $html = '<img src="' . $this->builder->inline() . '" class="Formidable_Captcha" alt="Code visuel" ><br />' . $input_html;
     return $html;
 }