We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 87e59c9 + c01f397 commit 0f108eaCopy full SHA for 0f108ea
classes/install/Installer.php
@@ -36,6 +36,7 @@
36
use PKP\site\Version;
37
use PKP\site\VersionCheck;
38
use PKP\site\VersionDAO;
39
+use PKP\task\UpdateIPGeoDB;
40
use PKP\task\UpdateRorRegistryDataset;
41
use PKP\xml\PKPXMLParser;
42
use PKP\xml\XMLNode;
@@ -955,7 +956,18 @@ public function updateRorRegistryDataset(): bool
955
956
957
$updateRorRegistryDataset = new UpdateRorRegistryDataset();
958
$updateRorRegistryDataset->execute();
-
959
+
960
+ return true;
961
+ }
962
963
+ /**
964
+ * Download IPGeoDB
965
+ */
966
+ public function downloadIPGeoDB(): bool
967
+ {
968
+ PKPApplication::upgrade();
969
+ $updateIPGeoDB = new UpdateIPGeoDB();
970
+ $updateIPGeoDB->execute();
971
return true;
972
}
973
0 commit comments