Skip to content

Commit

Permalink
Merge pull request #779 from coral-erm/sirsidynix
Browse files Browse the repository at this point in the history
Updating version to 2024.10
  • Loading branch information
rtatterson authored Oct 8, 2024
2 parents dd24afe + f2e39b2 commit 2e371bd
Show file tree
Hide file tree
Showing 9 changed files with 80 additions and 3 deletions.
11 changes: 11 additions & 0 deletions auth/install/auth.php
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down
4 changes: 2 additions & 2 deletions install/index.php
Original file line number Diff line number Diff line change
Expand Up @@ -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()
{
Expand Down
11 changes: 11 additions & 0 deletions licensing/install/licensing.php
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down
11 changes: 11 additions & 0 deletions management/install/management.php
Original file line number Diff line number Diff line change
Expand Up @@ -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;
}
Expand Down
11 changes: 11 additions & 0 deletions organizations/install/organizations.php
Original file line number Diff line number Diff line change
Expand Up @@ -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;
}
Expand Down
11 changes: 11 additions & 0 deletions reports/install/reports.php
Original file line number Diff line number Diff line change
Expand Up @@ -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();
Expand Down
11 changes: 11 additions & 0 deletions resources/install/resources.php
Original file line number Diff line number Diff line change
Expand Up @@ -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;
}
Expand Down
2 changes: 1 addition & 1 deletion templates/footer.php
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
</div>

<div class="footer">
<?php echo _("Copyright");?> &copy; <?php echo date('Y'); ?>. <?php echo _("CORAL version");?> 2024.04<br/>
<?php echo _("Copyright");?> &copy; <?php echo date('Y'); ?>. <?php echo _("CORAL version");?> 2024.10<br/>
<a href="http://coral-erm.org/"><?php echo _("CORAL Project Website");?></a> |
<a href="https://github.com/coral-erm/coral/issues"><?php echo _("Report an Issue");?></a>
</div>
Expand Down
11 changes: 11 additions & 0 deletions usage/install/usage.php
Original file line number Diff line number Diff line change
Expand Up @@ -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;
}
Expand Down

0 comments on commit 2e371bd

Please sign in to comment.