diff --git a/contrib/piclens/main.php b/contrib/piclens/main.php new file mode 100644 index 00000000..1b6ab2a5 --- /dev/null +++ b/contrib/piclens/main.php @@ -0,0 +1,28 @@ + + * License: GPLv2 + * Description: Adds a link to piclensify the gallery + */ +class PicLens extends Extension { + public function receive_event($event) { + if(is_a($event, 'PageRequestEvent')) { + global $config; + if(strlen($config->get_string("site_description")) > 0) { + $description = $config->get_string("site_description"); + $event->page->add_header(""); + } + } + if(is_a($event, 'PostListBuildingEvent')) { + $foo=' + Start Slideshow + PicLens'; + $event->page->add_block(new Block("PicLens", $foo, "left", 20)); + } + } +} +add_event_listener(new PicLens()); +?>