W3cubDocs

/Symfony 2.7

Symfony\Component\HttpKernel\Bundle\Bundle

abstract class Bundle extends ContainerAware implements BundleInterface

An implementation of BundleInterface that adds a few conventions for DependencyInjection extensions and Console commands.

Methods

setContainer(ContainerInterface $container = null)

Sets the Container.

from ContainerAware
boot()

Boots the Bundle.

shutdown()

Shutdowns the Bundle.

build(ContainerBuilder $container)

Builds the bundle.

ExtensionInterface|null getContainerExtension()

Returns the bundle's container extension.

string getNamespace()

Gets the Bundle namespace.

string getPath()

Gets the Bundle directory path.

string getParent()

Returns the bundle parent name.

string getName()

Returns the bundle name (the class short name).

registerCommands(Application $application)

Finds and registers Commands.

Details

public setContainer(ContainerInterface $container = null)

Sets the Container.

Parameters

ContainerInterface $container A ContainerInterface instance

public boot()

Boots the Bundle.

public shutdown()

Shutdowns the Bundle.

public build(ContainerBuilder $container)

Builds the bundle.

It is only ever called once when the cache is empty.

This method can be overridden to register compilation passes, other extensions, ...

Parameters

ContainerBuilder $container A ContainerBuilder instance

public ExtensionInterface|null getContainerExtension()

Returns the bundle's container extension.

Return Value

ExtensionInterface|null The container extension

Exceptions

LogicException

public string getNamespace()

Gets the Bundle namespace.

Return Value

string The Bundle namespace

public string getPath()

Gets the Bundle directory path.

Return Value

string The Bundle absolute path

public string getParent()

Returns the bundle parent name.

Return Value

string The Bundle parent name it overrides or null if no parent

final public string getName()

Returns the bundle name (the class short name).

Return Value

string The Bundle name

public registerCommands(Application $application)

Finds and registers Commands.

Override this method if your bundle commands do not follow the conventions:

  • Commands are in the 'Command' sub-directory
  • Commands extend Symfony\Component\Console\Command\Command

Parameters

Application $application An Application instance

© 2004–2016 Fabien Potencier
Licensed under the MIT License.
http://api.symfony.com/2.7/Symfony/Component/HttpKernel/Bundle/Bundle.html