diff options
Diffstat (limited to '')
-rw-r--r-- | plugins/hello_world/index.php | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/plugins/hello_world/index.php b/plugins/hello_world/index.php new file mode 100644 index 000000000..d2a8bcddb --- /dev/null +++ b/plugins/hello_world/index.php @@ -0,0 +1,18 @@ +<?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; +} +?> |