www.legu.cc/plugins/Comment/CommentPlugin.class.php
2021-09-06 11:50:33 +08:00

41 lines
1.5 KiB
PHP
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<?php
// +----------------------------------------------------------------------
// | ThinkCMF [ WE CAN DO IT MORE SIMPLE ]
// +----------------------------------------------------------------------
// | Copyright (c) 2013-2014 http://www.thinkcmf.com All rights reserved.
// +----------------------------------------------------------------------
// | Author: Dean <zxxjjforever@163.com>
// +----------------------------------------------------------------------
namespace plugins\Comment;//Comment插件英文名改成你的插件英文就行了
use Common\Lib\Plugin;
/**
* Comment
*/
class CommentPlugin extends Plugin{//Comment插件英文名改成你的插件英文就行了
public $info = array(
'name'=>'Comment',//Comment插件英文名改成你的插件英文就行了
'title'=>'系统评论插件',
'description'=>'系统评论插件',
'status'=>1,
'author'=>'ThinkCMF',
'version'=>'1.0'
);
public $has_admin=0;//插件是否有后台管理界面
public function install(){//安装方法必须实现
return true;//安装成功返回true失败false
}
public function uninstall(){//卸载方法必须实现
return true;//卸载成功返回true失败false
}
//实现的comment钩子方法
public function comment($param){
echo Comments($param['post_table'],$param['post_id'],array('post_title'=>$param['post_title']));
}
}