* License: GPLv2 * Description: Adds a link to piclensify the gallery */ class PicLens implements Extension { public function receive_event(Event $event) { if($event instanceof PageRequestEvent) { $event->page->add_header(""); } if($event instanceof PostListBuildingEvent) { $foo=' Start Slideshow PicLens'; $event->page->add_block(new Block("PicLens", $foo, "left", 20)); } } } add_event_listener(new PicLens()); ?>