blob: a22349383eadf1cf8ce3610a43e7aec525de7a56 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
|
# Custom Modules Developed for Drupal 8
# --Pre Requisites:
--<b>Dupal Console Or Drush</b>
# --To Install the Module(s):
--Place the required Content Type Module(s) in The Custom Folder of Modules of your Drupal Directory<b>(./modules/custom)</b>
# --Intsalling with Drupal Console :
-->In the Terminal navigate to root directory of your Project.
-->Run the Command:<b>$ drupal modules:install module_name.</b>
-->Example if module is 'artcle' then run: $ drupal module:install article.
# --Installing with Drush :
-->In the Terminal navigate to root directory of your Project.
-->Run the Command:<b>$ drush en module_name</b>
-->Example if module is 'artcle' then run: $ drush en article
# --I'd love it if you could Contribute to my Modules:
--><b>Fork</b> my Repository
-->Work with your fork and commit your changes to your Repo.
-->Create a Pull Request.
-->We’ll analyse your changes and Merge it.
|