diff options
Diffstat (limited to 'plugins/hello_world/index.php')
-rw-r--r-- | plugins/hello_world/index.php | 18 |
1 files changed, 0 insertions, 18 deletions
diff --git a/plugins/hello_world/index.php b/plugins/hello_world/index.php deleted file mode 100644 index d2a8bcddb..000000000 --- a/plugins/hello_world/index.php +++ /dev/null @@ -1,18 +0,0 @@ -<?php /* -Plugin Name: Hello World ! -Author: PhpWebGallery team -Description: This example plugin changes the page banner for the administration page -*/ - -add_event_handler('page_banner', 'hello_world_banner' ); - -function hello_world_banner($banner) -{ - global $page; - if ( isset($page['body_id']) and $page['body_id']=='theAdminPage') - { - return '<h1>Hello world from PhpWebGallery plugin!</h1>'; - } - return $banner; -} -?> |