function demo_create_functions()
{
global $zbp;
if(!isset($zbp->modulesbyfilename['demo_module'])) //检查系统中是否已有该模块,没有则创建
{
$t = new Module();
$t->Name = "演示模块";
$t->FileName = "demo_module";
$t->Source = "plugin_demo";
$t->SidebarID = 0;
$t->Content = "";
$t->HtmlID = "demo_module";
$t->Type = "div";
$t->Content = '<b>demo test</b>';
$t->Save();
}
}
demo_create_functions();