$modversion['version'] = 1.02;
xoops_trust_path/modules/Plugg/plugins/HelloWorld
<?php
class Plugg_HelloWorld_PluginInfo extends Plugg_PluginInfo
{
public function __construct($library, $path, $application)
{
parent::__construct($library, $path, $application);
$this->_version = '1.0.0';
$this->_summary = $this->_('Hello World!と言う文字列を出力するプラグイン。)';
$this->_nicename = $this->_('HelloWorld!)';
}
}
<?php
class Plugg_HelloWorld_Plugin extends Plugg_Plugin
{
}
Plugg for XCLのXiggプラグインはその見た目をフォーラムとして運用することが可能です。この日本サイトのフォーラムがまさにそのようにして運用しています。
その方法ですが、
以上で見た目がフォーラムのXiggの出来上がりです。複製したプラグインのページを開いてみると、通常のニュースサイトではなくフォーラムの感じが出ていると思います。
次回のリリースではbbs.cssを名前変更しなくても良いようにしたいと思います。
]]>