<?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!!");
}
}
?>
以上是我自己照著網路上的範本打的,但是一直無法成功顯示出來,不知道為什麼煩請各位前輩告知如何著手。
測試環境是PHP Version 5.1.6
Apache/2.2.3 (Win32)
lifetype1.1.2版