/** * Método mágico do PHP que é chamado ao receber um echo. * * @return string O texto do formulário */ public function __toString() { if (!array_key_exists('closing_form', $this->attrs)) { $this->close('Enviar'); } return parent::__toString(); }
/** * the end method which shows only form and input tag. * delete display:none, because can not send Token with Japanese mobile devices. * * @param array options */ function end($options = null) { return strip_tags(parent::end($options), '<form><input>'); }