Skip to content

Commit 9130952

Browse files
committed
Add MAGENTO_MODULE_FOLDER
1 parent fa0f257 commit 9130952

File tree

2 files changed

+66
-22
lines changed

2 files changed

+66
-22
lines changed

README.md

+14-5
Original file line numberDiff line numberDiff line change
@@ -91,12 +91,21 @@ return (new InstallConfig())
9191
->get();
9292
```
9393

94-
Instead of using a hard-coded value, you might also want to set an environment variable `MAGENTO_MODULE` - for instance, in the **Run** configuration in PHPStorm - which is then reused via the method `enableByMagentoModuleEnv`. This way, you can keep the same `install-config-mysql.php` file while reusing it for various **Run** configurations:
94+
Instead of using a hard-coded value, you might also want to set an environment variable `MAGENTO_MODULE` - for instance, in the **Run** configuration in PHPStorm. This way, you can keep the same `install-config-mysql.php` file while reusing it for various **Run** configurations:
9595

9696
```php
97-
$disableModules->disableAll()
98-
->enableMagento()
99-
->enableByMagentoModuleEnv();
97+
MAGENTO_MODULE=Yireo_Example
98+
```
99+
100+
Note that if your module has dependencies, they need to be added to the same environment as well:
101+
102+
```php
103+
MAGENTO_MODULE=Yireo_Example,Yireo_Foobar
104+
```
105+
106+
If you have a lot of requirements, you can also use the `MAGENTO_MODULE_FOLDER` variable instead, which parses your own `etc/module.xml` and adds all declared modules to the whitelist:
107+
```php
108+
MAGENTO_MODULE_FOLDER=app/code/Yireo/Example
100109
```
101110

102111
Another example, all the Magento modules are enabled by default. But then MSI and GraphQL are disabled again, while all Yireo modules are enabled:
@@ -133,4 +142,4 @@ $ bin/magento integration_tests:check
133142
| Redis port | 6379 |
134143
| Redis reachable | Yes |
135144
+--------------------+--------------------+
136-
```
145+
```

Utilities/DisableModules.php

+52-17
Original file line numberDiff line numberDiff line change
@@ -66,6 +66,40 @@ public function enableByMagentoModuleEnv(): DisableModules
6666
return $this;
6767
}
6868

69+
/**
70+
* Enable a specific module by looking up the environment variable MAGENTO_MODULE
71+
*
72+
* @return $this
73+
*/
74+
public function enableByMagentoModuleFolderEnv(): DisableModules
75+
{
76+
$moduleFolder = $this->getVariable('MAGENTO_MODULE_FOLDER');
77+
if (empty($moduleFolder)) {
78+
return $this;
79+
}
80+
81+
$fullModuleFolder = $this->applicationRoot.'/'.$moduleFolder;
82+
if (false === is_dir($fullModuleFolder)) {
83+
return $this;
84+
}
85+
86+
if (false === is_file($fullModuleFolder.'/etc/module.xml')) {
87+
return $this;
88+
}
89+
90+
$moduleXml = file_get_contents($fullModuleFolder.'/etc/module.xml');
91+
$xml = simplexml_load_string($moduleXml, "SimpleXMLElement");
92+
$this->enableByName((string)$xml->module['name']);
93+
94+
if ($xml->module->sequence) {
95+
foreach ($xml->module->sequence->module as $sequence) {
96+
$this->enableByName((string)$sequence['name']);
97+
}
98+
}
99+
100+
return $this;
101+
}
102+
69103
/**
70104
* Enable a specific module by its name (like "Foo_Bar")
71105
*
@@ -158,6 +192,22 @@ public function disableGraphQl(): DisableModules
158192
return $this->disableByPattern('GraphQl');
159193
}
160194

195+
/**
196+
* Include all modules that are disabled in the global configuration
197+
*
198+
* @return $this
199+
*/
200+
public function disableDisabledAnyway(): DisableModules
201+
{
202+
foreach ($this->existingModules as $moduleName => $moduleStatus) {
203+
if ($moduleStatus === 0) {
204+
$this->disableModules[] = $moduleName;
205+
}
206+
}
207+
208+
return $this;
209+
}
210+
161211
/**
162212
* Get all modules from the configuration
163213
*
@@ -175,8 +225,6 @@ public function getModulesFromConfig(): array
175225
return $config['modules'];
176226
}
177227

178-
179-
180228
/**
181229
* Check if a given module is enabled in this DisableModules configuration
182230
*
@@ -199,7 +247,8 @@ public function isModuleEnabled(string $moduleName): bool
199247
*/
200248
public function get(): array
201249
{
202-
$this->disableDisabledAnyway();
250+
$this->enableByMagentoModuleEnv();
251+
$this->enableByMagentoModuleFolderEnv();
203252
sort($this->disableModules);
204253
return array_unique($this->disableModules);
205254
}
@@ -234,21 +283,7 @@ private function setApplicationRoot(string $applicationRoot)
234283

235284
$this->applicationRoot = $applicationRoot;
236285
}
237-
/**
238-
* Include all modules that are disabled in the global configuration
239-
*
240-
* @return $this
241-
*/
242-
private function disableDisabledAnyway(): DisableModules
243-
{
244-
foreach ($this->existingModules as $moduleName => $moduleStatus) {
245-
if ($moduleStatus === 0) {
246-
$this->disableModules[] = $moduleName;
247-
}
248-
}
249286

250-
return $this;
251-
}
252287

253288
/**
254289
* @param string $variableName

0 commit comments

Comments
 (0)