This repository has been archived on 2024-09-05. You can view files and clone it, but cannot push or open issues or pull requests.
shimmie2/ext/upgrade/main.php
shish 09b2be6830 PHP4 is dead \o/ \o/ \o/ (Part 1, make use of instanceof)
git-svn-id: file:///home/shish/svn/shimmie2/trunk@994 7f39781d-f577-437e-ae19-be835c7a54ca
2008-08-22 09:41:30 +00:00

24 lines
472 B
PHP

<?php
class Upgrade extends Extension {
public function receive_event($event) {
if($event instanceof InitExtEvent) {
$this->do_things();
}
}
private function do_things() {
global $config;
global $database;
if(!is_numeric($config->get_string("db_version"))) {
$config->set_int("db_version", 2);
}
if($config->get_int("db_version") < 6) {
$database->upgrade_schema("ext/upgrade/schema.xml");
}
}
}
add_event_listener(new Upgrade(), 5);
?>