W3cubDocs

/Symfony 3.0

Symfony\Bundle\FrameworkBundle\DependencyInjection\FrameworkExtension

class FrameworkExtension extends Extension

FrameworkExtension.

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
ConfigurationInterface|null getConfiguration(array $config, ContainerBuilder $container)

Returns extension configuration.

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)

Responds to the app.config configuration parameter.

Details

public string getXsdValidationBasePath()

Returns the base path for the XSD files.

Return Value

string The XSD base path

public string getNamespace()

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

Return Value

string The XML namespace

public string getAlias()

Returns the recommended alias to use in XML.

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

Return Value

string The alias

public 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

public array getClassesToCompile()

Gets the classes to cache.

Return Value

array An array of classes

public addClassesToCompile(array $classes)

Adds classes to the class cache.

Parameters

array $classes An array of classes

public load(array $configs, ContainerBuilder $container)

Responds to the app.config configuration parameter.

Parameters

array $configs
ContainerBuilder $container A ContainerBuilder instance

Exceptions

LogicException