Home
last modified time | relevance | path

Searched refs:commenthelper (Results 1 – 8 of 8) sorted by relevance

/plugin/blogtng/action/
H A Dcomments.php15 var $commenthelper = null; variable in action_plugin_blogtng_comments
23 $this->commenthelper = plugin_load('helper', 'blogtng_comments');
54 $this->commenthelper->optin($INPUT->str('btngo'));
59 $this->commenthelper->unsubscribe_by_key(md5($ID), $INPUT->str('btngu'));
H A Dentry.php15 var $commenthelper = null; variable in action_plugin_blogtng_entry
19 $this->commenthelper = plugin_load('helper', 'blogtng_comments');
51 $this->commenthelper->setPid($pid);
H A Dnew.php13 protected $commenthelper = null; variable in action_plugin_blogtng_new
19 $this->commenthelper = plugin_load('helper', 'blogtng_comments');
/plugin/blogtng/helper/
H A Dentry.php24 private $commenthelper = null; variable in helper_plugin_blogtng_entry
54 $this->commenthelper = null;
162 if(!$this->commenthelper) {
577 if(!$this->commenthelper) {
580 $this->commenthelper->setPid($this->entry['pid']);
581 $this->commenthelper->tpl_comments($name,$types);
594 if(!$this->commenthelper) {
597 $this->commenthelper->setPid($this->entry['pid']);
667 if(!$this->commenthelper) {
945 if(!$this->commenthelper) {
[all …]
/plugin/podcast/blogtng-tpl/
H A Dentry.php79 if (!$entry->commenthelper){
80 $entry->commenthelper =& plugin_load("helper", "blogtng_comments");
82 if ($entry->commenthelper->get_count() >= 1){
/plugin/blogtng/syntax/
H A Dcommentreply.php63 $commenthelper = plugin_load('helper', 'blogtng_comments');
64 $comment = $commenthelper->comment_by_cid($cid);
H A Dblog.php34 var $commenthelper = null; variable in syntax_plugin_blogtng_blog
189 $renderer->doc .= $this->commenthelper->xhtml_recentcomments($data['conf']);
238 $this->commenthelper = plugin_load('helper', 'blogtng_comments');
/plugin/blogtng/
H A Dadmin.php15 protected $commenthelper = null; variable in admin_plugin_blogtng
54 $this->commenthelper = plugin_load('helper', 'blogtng_comments');
90 $this->commenthelper->save($comment);
96 $this->commenthelper->delete($INPUT->post->str('comment-cid'));
108 $this->commenthelper->delete($cid);
112 $this->commenthelper->moderate($cid, 'hidden');
116 $this->commenthelper->moderate($cid, 'visible');
213 … $comment = $this->commenthelper->comment_by_cid($INPUT->get->str('comment-cid'));
574 $this->commenthelper->setPid($entry['pid']);
578 $count = $this->commenthelper->get_count(null, true);