You are here

public function FormFieldRegistry::all in Zircon Profile 8

Same name and namespace in other branches
  1. 8.0 vendor/symfony/dom-crawler/FormFieldRegistry.php \Symfony\Component\DomCrawler\FormFieldRegistry::all()

Returns the list of field with their value.

Return value

FormField[] The list of fields as array((string) Fully qualified name => (mixed) value)

File

vendor/symfony/dom-crawler/FormFieldRegistry.php, line 144

Class

FormFieldRegistry
This is an internal class that must not be used directly.

Namespace

Symfony\Component\DomCrawler

Code

public function all() {
  return $this
    ->walk($this->fields, $this->base);
}