1
1
.. index ::
2
2
single: Bundle; Removing AcmeDemoBundle
3
3
4
- How to remove the AcmeDemoBundle
4
+ How to Remove the AcmeDemoBundle
5
5
================================
6
6
7
7
The Symfony2 Standard Edition comes with a complete demo that lives inside a
@@ -13,7 +13,7 @@ starting a project, but you'll probably want to eventually remove it.
13
13
This article uses the AcmeDemoBundle as an example, but you can use
14
14
these steps to remove any bundle.
15
15
16
- 1. Unregister the bundle in the ``AppKernel ``
16
+ 1. Unregister the Bundle in the ``AppKernel ``
17
17
---------------------------------------------
18
18
19
19
To disconnect the bundle from the framework, you should remove the bundle from
@@ -38,20 +38,20 @@ development environment and you can find it inside the if statement below::
38
38
}
39
39
}
40
40
41
- 2. Remove bundle configuration
41
+ 2. Remove Bundle Configuration
42
42
------------------------------
43
43
44
44
Now that Symfony doesn't know about the bundle, you need to remove any
45
45
configuration and routing configuration inside the ``app/config `` directory
46
46
that refers to the bundle.
47
47
48
- 2.1 Remove bundle routing
48
+ 2.1 Remove Bundle Routing
49
49
~~~~~~~~~~~~~~~~~~~~~~~~~
50
50
51
51
The routing for the AcmeDemoBundle can be found in ``app/config/routing_dev.yml ``.
52
52
Remove the ``_acme_demo `` entry at the bottom of this file.
53
53
54
- 2.2 Remove bundle configuration
54
+ 2.2 Remove Bundle Configuration
55
55
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
56
56
57
57
Some bundles contain configuration in one of the ``app/config/config*.yml ``
@@ -65,7 +65,7 @@ used in the configuration for the ``app/config/security.yml`` file. You can
65
65
use it as a boilerplate for your own security, but you **can ** also remove
66
66
everything: it doesn't matter to Symfony if you remove it or not.
67
67
68
- 3. Remove the bundle from the Filesystem
68
+ 3. Remove the Bundle from the Filesystem
69
69
----------------------------------------
70
70
71
71
Now you have removed every reference to the bundle in your application, you
@@ -81,7 +81,7 @@ can remove the ``Acme`` directory as well.
81
81
82
82
echo $this->container->get('kernel')->getBundle('AcmeDemoBundle')->getPath();
83
83
84
- 4. Remove integration in other bundles
84
+ 4. Remove Integration in other Bundles
85
85
--------------------------------------
86
86
87
87
.. note ::
0 commit comments