Home
last modified time | relevance | path

Searched refs:entryhelper (Results 1 – 7 of 7) sorted by relevance

/plugin/blogtng/action/
Dentry.php13 var $entryhelper = null; variable in action_plugin_blogtng_entry
18 $this->entryhelper = plugin_load('helper', 'blogtng_entry');
45 $this->entryhelper->load_by_pid($pid);
46 if($this->entryhelper->get_blog() == '') return true;
52 $this->entryhelper->tpl_content($this->entryhelper->entry['blog'], 'entry');
71 $this->entryhelper->load_by_pid($pid);
72 if($this->entryhelper->get_blog() == '') return true;
74 $relatedentries = $this->entryhelper->getAdjacentLinks($ID);
Dedit.php13 var $entryhelper = null; variable in action_plugin_blogtng_edit
25 $this->entryhelper = plugin_load('helper', 'blogtng_entry');
60 $this->entryhelper->load_by_pid($pid);
61 $isNotExistingBlog = $this->entryhelper->entry['blog'] === null;
63 $blog = $this->entryhelper->get_blog();
66 $blogs = $this->entryhelper->getAllBlogs();
96 $commentstatus = $this->entryhelper->entry['commentstatus'];
114 $created = $this->entryhelper->entry['created'];
163 $this->entryhelper->load_by_pid($pid);
164 $isNotExistingBlog = $this->entryhelper->entry['blog'] === null;
[all …]
Dpagedata.php13 private $entryhelper; variable in action_plugin_blogtng_pagedata
16 $this->entryhelper = plugin_load('helper', 'blogtng_entry');
42 $this->entryhelper->load_by_pid($pid);
45 if($this->entryhelper->entry['blog']) {
48 $login = $this->entryhelper->entry['login'];
75 $this->entryhelper->set($entry);
78 $this->entryhelper->save();
91 $taghelper = $this->entryhelper->getTagHelper();
Dfeed.php13 private $entryhelper = null; variable in action_plugin_blogtng_feed
23 $this->entryhelper = plugin_load('helper', 'blogtng_entry');
82 $posts = $this->entryhelper->get_posts($conf);
121 $this->entryhelper->load_by_row($ditem['entry']);
124 $this->entryhelper->tpl_content($ditem['entry']['blog'], 'feed');
/plugin/blogtng/syntax/
Dblog.php30 var $entryhelper = null; variable in syntax_plugin_blogtng_blog
178 $renderer->doc .= $this->entryhelper->xhtml_related($data['conf']);
181 $renderer->doc .= $this->entryhelper->xhtml_pagination($data['conf']);
185 $renderer->doc .= $this->entryhelper->xhtml_newform($data['conf']);
196 $renderer->doc .= $this->entryhelper->xhtml_tagsearch($data['conf'], $renderer);
199 $renderer->doc .= $this->entryhelper->xhtml_list($data['conf'], $renderer);
236 $this->entryhelper = plugin_load('helper', 'blogtng_entry');
/plugin/podcast/action/
Dfeed.php12 var $entryhelper = null; variable in action_plugin_podcast_feed
20 $this->entryhelper =& plugin_load('helper', 'blogtng_entry');
55 $posts = $this->entryhelper->get_posts($conf);
98 $this->entryhelper->load_by_row($ditem['entry']);
115 $this->entryhelper->tpl_content($ditem['entry']['blog'], 'feed');
140 $this->entryhelper->tpl_tags( $tag_url );
/plugin/blogtng/
Dadmin.php17 protected $entryhelper = null; variable in admin_plugin_blogtng
55 $this->entryhelper = plugin_load('helper', 'blogtng_entry');
131 $blogs = $this->entryhelper->getAllBlogs();
133 $this->entryhelper->load_by_pid($pid);
134 $this->entryhelper->entry['blog'] = $blog;
135 $this->entryhelper->save();
146 $this->entryhelper->load_by_pid($pid);
147 $this->entryhelper->entry['commentstatus'] = $status;
148 $this->entryhelper->save();
707 $this->entryhelper->load_by_pid($comment->getPid());
[all …]