2007-04-16 11:58:25 +00:00
|
|
|
<?php
|
|
|
|
|
|
|
|
class AddAliasEvent extends Event {
|
|
|
|
var $oldtag;
|
|
|
|
var $newtag;
|
|
|
|
|
|
|
|
public function AddAliasEvent($oldtag, $newtag) {
|
|
|
|
$this->oldtag = $oldtag;
|
|
|
|
$this->newtag = $newtag;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
class AliasEditor extends Extension {
|
2007-06-30 01:19:11 +00:00
|
|
|
var $theme;
|
2007-04-16 11:58:25 +00:00
|
|
|
// event handler {{{
|
|
|
|
public function receive_event($event) {
|
2007-06-30 01:19:11 +00:00
|
|
|
if(is_null($this->theme)) $this->theme = get_theme_object("alias_editor", "AliasEditorTheme");
|
|
|
|
|
2007-04-16 11:58:25 +00:00
|
|
|
if(is_a($event, 'PageRequestEvent') && ($event->page == "alias")) {
|
|
|
|
global $user;
|
2007-06-04 03:31:52 +00:00
|
|
|
if($event->get_arg(0) == "add") {
|
|
|
|
if($user->is_admin()) {
|
2007-04-16 11:58:25 +00:00
|
|
|
if(isset($_POST['oldtag']) && isset($_POST['newtag'])) {
|
|
|
|
send_event(new AddAliasEvent($_POST['oldtag'], $_POST['newtag']));
|
|
|
|
}
|
|
|
|
}
|
2007-06-04 03:31:52 +00:00
|
|
|
}
|
|
|
|
else if($event->get_arg(0) == "remove") {
|
|
|
|
if($user->is_admin()) {
|
2007-04-16 11:58:25 +00:00
|
|
|
if(isset($_POST['oldtag'])) {
|
|
|
|
global $database;
|
2007-05-23 22:19:12 +00:00
|
|
|
$database->Execute("DELETE FROM aliases WHERE oldtag=?", array($_POST['oldtag']));
|
2007-06-30 01:19:11 +00:00
|
|
|
|
2007-04-16 11:58:25 +00:00
|
|
|
global $page;
|
|
|
|
$page->set_mode("redirect");
|
|
|
|
$page->set_redirect(make_link("admin"));
|
|
|
|
}
|
|
|
|
}
|
2007-06-04 03:31:52 +00:00
|
|
|
}
|
|
|
|
else if($event->get_arg(0) == "list") {
|
|
|
|
global $page;
|
2007-06-30 01:19:11 +00:00
|
|
|
global $database;
|
|
|
|
$this->theme->display_aliases($page, $database->db->GetAssoc("SELECT oldtag, newtag FROM aliases"), $user->is_admin());
|
2007-06-04 03:31:52 +00:00
|
|
|
}
|
|
|
|
else if($event->get_arg(0) == "export") {
|
|
|
|
global $page;
|
|
|
|
$page->set_mode("data");
|
|
|
|
$page->set_type("text/plain");
|
|
|
|
$page->set_data($this->get_alias_csv());
|
2007-04-16 11:58:25 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if(is_a($event, 'AddAliasEvent')) {
|
|
|
|
global $database;
|
2007-05-23 22:19:12 +00:00
|
|
|
$database->Execute("INSERT INTO aliases(oldtag, newtag) VALUES(?, ?)", array($event->oldtag, $event->newtag));
|
2007-04-16 11:58:25 +00:00
|
|
|
|
|
|
|
global $page;
|
|
|
|
$page->set_mode("redirect");
|
|
|
|
$page->set_redirect(make_link("admin"));
|
|
|
|
}
|
2007-06-04 02:35:28 +00:00
|
|
|
|
|
|
|
if(is_a($event, 'UserBlockBuildingEvent')) {
|
|
|
|
if($event->user->is_admin()) {
|
|
|
|
$event->add_link("Alias Editor", make_link("alias/list"));
|
|
|
|
}
|
|
|
|
}
|
2007-04-16 11:58:25 +00:00
|
|
|
}
|
|
|
|
// }}}
|
|
|
|
}
|
|
|
|
add_event_listener(new AliasEditor());
|
|
|
|
?>
|