I see that in regcode_simple_uninstall() the system performance configuration is removed:
/**
* Implements hook_uninstall().
*/
function regcode_simple_uninstall() {
\Drupal::service('config.factory')
->getEditable('system.performance')
->delete();
}
What's the reason for this? I don't see any other references to 'system.performance' in the module. Is this is a mistake?
| Comment | File | Size | Author |
|---|---|---|---|
| #2 | regcode_simple-uninstalling-wrong-config_3067554-2.patch | 761 bytes | rpsu |
Comments
Comment #2
rpsuWell, it is a mistake and it should not happen. The configuration name is incorrect. Also the config name in the schema was wrong.
Comment #4
rpsu