Form::getPhpFiles()

array getPhpFiles() Gets the file field values as PHP. This method converts fields with the array notation (like foo[bar] to arrays) like PHP does. The returned array is consistent with the array for field values (see getPhpValues), rather than uploaded files found in $FILES. For a compound file field foo[bar] it will create foo[bar][name], instead of foo[name][bar] which would be found in $FILES. Return Value array An array of file field values

Crawler::filterXPath()

Crawler filterXPath(string $xpath) Filters the list of nodes with an XPath expression. The XPath expression is evaluated in the context of the crawler, which is considered as a fake parent of the elements inside it. This means that a child selector "div" or "./div" will match only the div elements of the current crawler, not their children. Parameters string $xpath An XPath expression Return Value Crawler A new instance of Crawler with the filtered list of nodes

Container::underscore()

static string underscore(string $id) A string to underscore. Parameters string $id The string to underscore Return Value string The underscored string

LogicException

class LogicException extends LogicException implements ExceptionInterface Base LogicException for Form component.

Finder::followLinks()

Finder|SplFileInfo[] followLinks() Forces the following of symlinks. Return Value Finder|SplFileInfo[] The current Finder instance

PropelLogger::debug()

debug($message) {@inheritdoc} Parameters $message

RecursiveDirectoryIterator::rewind()

rewind() Do nothing for non rewindable stream.

Glob::prepend()

ValueInterface prepend(string $expr) Parameters string $expr Return Value ValueInterface

Expression::create()

static Expression create(string $expr) Parameters string $expr Return Value Expression

Component\Form\Extension\Csrf\CsrfProvider

Classes DefaultCsrfProvider Default implementation of CsrfProviderInterface. SessionCsrfProvider This provider uses a Symfony2 Session object to retrieve the user's session ID. Interfaces CsrfProviderInterface Marks classes able to provide CSRF protection