AnsPress_Form::build()
Description #
Build the form.
Source #
File: includes/class/form.php
public function build() {
$this->form_head();
$this->form_fields();
if ( ! isset( $this->args['hide_footer'] ) || false !== $this->args['hide_footer'] ) {
$this->hidden_fields();
$this->form_footer();
}
}
Expand full source code Collapse full source code View on GitHub: includes/class/form.php:128
Add your comment