class WebProfilerExtension extends Extension

WebProfilerExtension.

Usage:

<webprofiler:config
   toolbar="true"
   intercept-redirects="true"
/>

Methods

string
getXsdValidationBasePath()

Returns the base path for the XSD files.

string
getNamespace()

Returns the namespace to be used for this extension (XML namespace).

string
getAlias()

Returns the recommended alias to use in XML.

from Extension
getConfiguration(array $config, ContainerBuilder $container)

Returns extension configuration.

from Extension
array
getClassesToCompile()

Gets the classes to cache.

from Extension
addClassesToCompile(array $classes)

Adds classes to the class cache.

from Extension
load(array $configs, ContainerBuilder $container)

Loads the web profiler configuration.

Details

at line line 62
string getXsdValidationBasePath()

Returns the base path for the XSD files.

Return Value

string The XSD base path

at line line 67
string getNamespace()

Returns the namespace to be used for this extension (XML namespace).

Return Value

string The XML namespace

in Extension at line line 69
string getAlias()

Returns the recommended alias to use in XML.

This alias is also the mandatory prefix to use when using YAML.

This convention is to remove the "Extension" postfix from the class name and then lowercase and underscore the result. So:

AcmeHelloExtension

becomes

acme_hello

This can be overridden in a sub-class to specify the alias manually.

Return Value

string The alias

Exceptions

BadMethodCallException When the extension name does not follow conventions

in Extension at line line 83
ConfigurationInterface|null getConfiguration(array $config, ContainerBuilder $container)

Returns extension configuration.

Parameters

array $config An array of configuration values
ContainerBuilder $container A ContainerBuilder instance

Return Value

ConfigurationInterface|null The configuration or null

in Extension at line line 30
array getClassesToCompile()

Gets the classes to cache.

Return Value

array An array of classes

in Extension at line line 40
addClassesToCompile(array $classes)

Adds classes to the class cache.

Parameters

array $classes An array of classes

at line line 40
load(array $configs, ContainerBuilder $container)

Loads the web profiler configuration.

Parameters

array $configs An array of configuration settings
ContainerBuilder $container A ContainerBuilder instance