hi!
i'm trying to update the ACP modules (add a new one) between two releases of an ext.
i've tryed different ways...no one has solved my problem.
important:
i'm trying to update the schema by disabling and enabling the ext (NOT doing the wipe data for the ext, and i cannot do it, otherwise i'll loose all!)
is it possible? i think so
the first file i've tryied is
install_acp_module_1_3_5and the second one i've tryed (trying to delete the old one and reinstall all modules)how can i solve?
thanks!
i'm trying to update the ACP modules (add a new one) between two releases of an ext.
i've tryed different ways...no one has solved my problem.
important:
i'm trying to update the schema by disabling and enabling the ext (NOT doing the wipe data for the ext, and i cannot do it, otherwise i'll loose all!)
is it possible? i think so
the first file i've tryied is
install_acp_module_1_3_5
Code:
class install_acp_module_1_3_5 extends \phpbb\db\migration\migration{public static function depends_on(){return ['\sebo\postreact\migrations\install_data','\sebo\postreact\migrations\install_acp_module'];}public function update_data(){return = [['module.add', ['acp', 'ACP_POSTREACT_TITLE', ['module_basename'=> '\sebo\postreact\acp\purge_module','modes'=> ['purge'],],]],];}Code:
class install_acp_module_1_3_5 extends \phpbb\db\migration\migration{public static function depends_on(){return ['\sebo\postreact\migrations\install_data','\sebo\postreact\migrations\install_acp_module'];}public function update_data(){$remove_modules = [['module.remove', ['acp', 'ACP_POSTREACT_TITLE', ['module_basename'=> '\sebo\postreact\acp\main_module','modes'=> ['settings'],],]],['module.remove', ['acp', 'ACP_CAT_DOT_MODS', 'ACP_POSTREACT_TITLE']],];$add_modules = [['module.add', ['acp', 'ACP_CAT_DOT_MODS', 'ACP_POSTREACT_TITLE']],['module.add', ['acp', 'ACP_POSTREACT_TITLE', ['module_basename'=> '\sebo\postreact\acp\main_module','modes'=> ['settings'],],]],['module.add', ['acp', 'ACP_POSTREACT_TITLE', ['module_basename'=> '\sebo\postreact\acp\purge_module','modes'=> ['purge'],],]],];return array_merge($remove_modules, $add_modules);}thanks!
Statistics: Posted by sebo — Thu Jun 19, 2025 5:41 pm