TwigExtension::getNamespace()

string getNamespace() Returns the namespace to be used for this extension (XML namespace). Return Value string The XML namespace

IcuResFileDumper

class IcuResFileDumper extends FileDumper IcuResDumper generates an ICU ResourceBundle formatted string representation of a message catalogue. Methods setRelativePathTemplate(string $relativePathTemplate) Sets the template for the relative paths to files. from FileDumper setBackup(bool $backup) Sets backup flag. from FileDumper dump(MessageCatalogue $messages, array $options = array()) Dumps the message catalogue. from FileDumper string formatCatalogue(MessageCatalogue $messa

ClassMetadataInterface::getClassName()

string getClassName() Returns the name of the backing PHP class. Return Value string The name of the backing class

SidNotLoadedException

class SidNotLoadedException extends Exception This exception is thrown when ACEs for an SID are requested which has not been loaded from the database.

NodeExtension::setFlag()

NodeExtension setFlag(int $flag, bool $on) Parameters int $flag bool $on Return Value NodeExtension

Request::isXmlHttpRequest()

bool isXmlHttpRequest() Returns true if the request is a XMLHttpRequest. It works if your JavaScript library sets an X-Requested-With HTTP header. It is known to work with common JavaScript frameworks: Return Value bool true if the request is an XMLHttpRequest, false otherwise

ButtonBuilder::getName()

string getName() Returns the name of the form used as HTTP parameter. Return Value string The form name

RedirectController::redirectAction()

Response redirectAction(Request $request, string $route, bool $permanent = false, bool|array $ignoreAttributes = false) Redirects to another route with the given name. The response status code is 302 if the permanent parameter is false (default), and 301 if the redirection is permanent. In case the route name is empty, the status code will be 404 when permanent is false and 410 otherwise. Parameters Request $request The request instance string $route The route name to redirect

Definition::getConfigurator()

callable|null getConfigurator() Gets the configurator to call after the service is fully initialized. Return Value callable|null The PHP callable to call

CookieJar::expire()

expire(string $name, string $path = '/', string $domain = null) Removes a cookie by name. You should never use an empty domain, but if you do so, all cookies for the given name/path expire (this behavior ensures a BC behavior with previous versions of Symfony). Parameters string $name The cookie name string $path The cookie path string $domain The cookie domain