@@ -42,58 +42,33 @@ php -r "readfile('https://getcomposer.org/installer');" | php
42
42
Instructions to install Drupal Console if you are using composer inside Drupal Installation.
43
43
```
44
44
$ COMPOSER_BIN_DIR=bin php composer.phar require --dev drupal/console:~0.1
45
- $ ./bin/console list
46
45
```
47
46
48
47
Instructions to install Drupal Console if you are using composer globally.
49
48
```
50
49
$ COMPOSER_BIN_DIR=bin composer require --dev drupal/console:~0.1
51
- $ ./bin/console list
52
50
```
53
51
54
52
### Usage
55
-
56
- #### Module generator
57
- ``` bash
58
- $ ./bin/console generate:module
59
- ```
60
- #### Controller generator
61
- ``` bash
62
- $ ./bin/console generate:controller
63
- ```
64
- #### Form generator
65
- ``` bash
66
- $ ./bin/console generate:form
67
- ```
68
- #### Command generator
69
- ``` bash
70
- $ ./bin/console generate:command
71
- ```
72
- #### Service generator
73
- ``` bash
74
- $ ./bin/console generate:service
75
- ```
76
- #### Plugin Block generator
77
- ``` bash
78
- $ ./bin/console generate:plugin:block
79
- ```
80
- #### Plugin Image Effect generator
81
- ``` bash
82
- $ ./bin/console generate:plugin:imageeffect
83
- ```
84
- #### Container Debug
85
- ``` bash
86
- $ ./bin/console container:debug
87
- ```
88
- #### Router Debug
89
- ``` bash
90
- $ ./bin/console router:debug
91
- ```
92
- #### Router Rebuild
93
53
``` bash
94
- $ ./bin/console router:rebuild
54
+ $ ./bin/console list
55
+ $ ./bin/console --shell
95
56
```
96
57
58
+ ### Commands
59
+ | Generators | Router | Container | Commands
60
+ | :-----------------------------|:----------------------|:----------------|:---------
61
+ | generator: module | router: debug | container: debug | drush
62
+ | generator: controller | router: rebuild | |
63
+ | generator: form | | |
64
+ | generator: command | | |
65
+ | generator:plugin: block | | |
66
+ | generator:plugin: imageeffect | | |
67
+ | generator:entity: config | | |
68
+ | generator: service | | |
69
+
70
+
97
71
#### Videos
98
- [ Introducing the Drupal 8 Console scaffolding module generator] ( https://www.youtube.com/watch?v=lzjcj-_xlAg )
99
- [ How to install & use youtube video no audio] ( http://www.youtube.com/watch?v=NkHT2KctR-Y )
72
+ * [ Generate a configuration entity type using the drupal 8 console] ( https://www.youtube.com/watch?v=x1zYfMLzFIM )
73
+ * [ Introducing the Drupal 8 Console scaffolding module generator] ( https://www.youtube.com/watch?v=lzjcj-_xlAg )
74
+ * [ How to install & use youtube video no audio] ( http://www.youtube.com/watch?v=NkHT2KctR-Y )
0 commit comments