Skip to content

Instantly share code, notes, and snippets.

@Swader
Created September 13, 2012 00:45
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Swader/3711056 to your computer and use it in GitHub Desktop.
Save Swader/3711056 to your computer and use it in GitHub Desktop.
Rendering the Contacts Search Form
$this->searchForm->prepare();
echo $this->form()->openTag($this->searchForm);
echo $this->formRow($this->searchForm->get('validity'));
echo $this->formRow($this->searchForm->get('deleted'));
echo $this->formRow($this->searchForm->get('activated'));
echo $this->formInput($this->searchForm->get('search'));
echo $this->formRow($this->searchForm->get('submit'));
echo $this->form()->closeTag($this->searchForm);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment