<?php include_once(PLOG_CLASS_PATH."class/plugin/pluginbase.class.php"); class PluginHelloWorld extends PluginBase { function PluginHelloWorld() { $this->PluginBase(); $this->id = "HelloWorld"; $this->author = "Hello Sir"; $this->desc = "Test plugin show Hellow World"; $this->locales=Array(); } function sayHello() { return("Hellow, World!!"); } }?>