diff --git a/auth/install/auth.php b/auth/install/auth.php index f43b8ae1..30b1e5c8 100644 --- a/auth/install/auth.php +++ b/auth/install/auth.php @@ -383,6 +383,17 @@ function register_auth_provider() } ]; + case "2024.10": + return [ + "function" => function($shared_module_info) { + $return = new stdClass(); + $return->yield = new stdClass(); + $return->success = true; + $return->yield->title = _("Auth Module"); + return $return; + } + ]; + /** * This code is for when the upgrade requires no changes to the * database or conf files etc. diff --git a/install/index.php b/install/index.php index 869f0d0a..b6f4a7e6 100644 --- a/install/index.php +++ b/install/index.php @@ -57,8 +57,8 @@ * * NOTE: It is assumed that version strings can be understood by php's version_compare function */ -$INSTALLATION_VERSION = "2024.04"; -$INSTALLATION_VERSIONS = ["1.9.0", "2.0.0", "3.0.0", "3.0.1", "2020.02", "2020.09", "2024.04"]; +$INSTALLATION_VERSION = "2024.10"; +$INSTALLATION_VERSIONS = ["1.9.0", "2.0.0", "3.0.0", "3.0.1", "2020.02", "2020.09", "2024.04", "2024.10"]; function make_sure_template_is_drawn() { diff --git a/licensing/install/licensing.php b/licensing/install/licensing.php index 873e3d22..5a55cf59 100644 --- a/licensing/install/licensing.php +++ b/licensing/install/licensing.php @@ -231,6 +231,17 @@ function register_licensing_provider() } ]; + case "2024.10": + return [ + "function" => function($shared_module_info) { + $return = new stdClass(); + $return->yield = new stdClass(); + $return->success = true; + $return->yield->title = _("Licensing Module"); + return $return; + } + ]; + /** * This code is for when the upgrade requires no changes to the * database or conf files etc. diff --git a/management/install/management.php b/management/install/management.php index 876beec2..47769762 100644 --- a/management/install/management.php +++ b/management/install/management.php @@ -153,6 +153,17 @@ function register_management_provider() } ]; + case "2024.10": + return [ + "function" => function($shared_module_info) { + $return = new stdClass(); + $return->yield = new stdClass(); + $return->success = true; + $return->yield->title = _("Management Module"); + return $return; + } + ]; + default: return null; } diff --git a/organizations/install/organizations.php b/organizations/install/organizations.php index db2ebbda..7c42dde6 100644 --- a/organizations/install/organizations.php +++ b/organizations/install/organizations.php @@ -202,6 +202,17 @@ function register_organizations_provider() } ]; + case "2024.10": + return [ + "function" => function($shared_module_info) { + $return = new stdClass(); + $return->yield = new stdClass(); + $return->success = true; + $return->yield->title = _("Organizations Module"); + return $return; + } + ]; + default: return null; } diff --git a/reports/install/reports.php b/reports/install/reports.php index 8598fdb2..e783da42 100644 --- a/reports/install/reports.php +++ b/reports/install/reports.php @@ -140,6 +140,17 @@ function register_reports_provider() ]; case "2024.04": + return [ + "function" => function($shared_module_info) { + $return = new stdClass(); + $return->yield = new stdClass(); + $return->success = true; + $return->yield->title = _("Reports Module"); + return $return; + } + ]; + + case "2024.10": return [ "function" => function($shared_module_info) { $return = new stdClass(); diff --git a/resources/install/resources.php b/resources/install/resources.php index d148a445..dc69036f 100644 --- a/resources/install/resources.php +++ b/resources/install/resources.php @@ -304,6 +304,17 @@ function register_resources_provider() } ]; + case "2024.10": + return [ + "function" => function($shared_module_info) { + $return = new stdClass(); + $return->yield = new stdClass(); + $return->success = true; + $return->yield->title = _("Resources Module"); + return $return; + } + ]; + default: return null; } diff --git a/templates/footer.php b/templates/footer.php index 7bcfb6ec..8322df7e 100644 --- a/templates/footer.php +++ b/templates/footer.php @@ -25,7 +25,7 @@ diff --git a/usage/install/usage.php b/usage/install/usage.php index 1676dfbc..652e15d8 100644 --- a/usage/install/usage.php +++ b/usage/install/usage.php @@ -208,6 +208,17 @@ function register_usage_provider() } ]; + case "2024.10": + return [ + "function" => function($shared_module_info) { + $return = new stdClass(); + $return->yield = new stdClass(); + $return->success = true; + $return->yield->title = _("Usage Module"); + return $return; + } + ]; + default: return null; }