Home
last modified time | relevance | path

Searched refs:helper (Results 101 – 125 of 493) sorted by relevance

12345678910>>...20

/plugin/move/action/
H A Drewrite.php70 $helper = plugin_load('helper', 'move_rewrite', true);
71 if(!is_null($helper)) {
73 $event->result = $helper->rewritePage($id, $event->result, $save);
99 $helper = $this->loadHelper('move_rewrite');
100 if(!is_null($helper)) {
101 $meta = $helper->getMoveMeta($id);
/plugin/news/scripts/
H A DfeedData.php13 var $helper; variable in feedData
19 $this->helper = plugin_load('helper', 'news');
20 $this->helper->setSubFeed($subfeed) ;
22 $metafile = $this->helper->getMetaFN('pagedata', '.ser');
33 $metafile = $this->helper->getMetaFN('timestamp','.meta') ;
43 $file = $this->helper->getMetaFN($md5, '.gz');
91 …if($this->helper->getConf('createtime') && isset($this->currentMetaArray['create_time'])) { …
133 return $this->helper->getMetaFN($md5, '.gz');
/plugin/tag/_test/
H A Dtopic_and_tagrefine.test.php63 /** @var helper_plugin_tag $helper */
64 $helper = plugin_load('helper', 'tag');
65 $pages = $helper->tagRefine([], 'mytag');
76 /** @var helper_plugin_tag $helper */
77 $helper = plugin_load('helper', 'tag');
78 $pages = $helper->tagRefine($this->all_pages, $query);
80 $pages = $helper->getTopic('', '', $query);
/plugin/explorertree/
H A Daction.php37 if (!($helper = plugin_load('helper', 'explorertree'))){
41 if (!($route = $helper->loadRoute($INPUT->str('route'),$INPUT->arr('loader')))){
44 …$data = array('html' => $helper->htmlExplorer($INPUT->str('route'),ltrim(':'.$INPUT->str('itemid')…
48 if (!($helper = plugin_load('helper', 'explorertree'))){
52 $route = $helper->loadRoute($INPUT->str('route'),$INPUT->arr('loader'));
/plugin/acknowledge/admin/
H A Dreport.php57 /** @var helper_plugin_acknowledge $helper */
58 $helper = plugin_load('helper', 'acknowledge');
61 $pages = $helper->getPagesMatchingPattern($pattern);
67 $helper->getPageAcknowledgements($pattern, $user, $status, 1000)
103 /** @var helper_plugin_acknowledge $helper */
104 $helper = plugin_load('helper', 'acknowledge');
109 $assignments = $helper->getUserAcknowledgements($user, $userinfo['grps'], 'current');
111 $assignments = $helper
[all...]
/plugin/git/action/
H A Drevert.php14 var $helper = null; variable in action_plugin_git_revert
17 $this->helper =& plugin_load('helper', 'git');
18 if (is_null($this->helper)) {
35 $this->helper->changeReadOnly(false);
H A Dalertupstreamchanges.php13 var $helper = null; variable in action_plugin_git_alertupstreamchanges
16 $this->helper =& plugin_load('helper', 'git');
17 …if(!$this->helper) msg('Loading the git helper in the git_alertupstreamchanges class failed.', -1);
46 if ($this->helper->CheckForUpstreamUpdates())
H A Dalertcommited.php14 var $helper = null; variable in action_plugin_git_alertcommited
17 $this->helper =& plugin_load('helper', 'git');
18 …if(!$this->helper) msg('Loading the git helper in the git_alertupstreamchanges class failed.', -1);
50 $changesAwaiting = $this->helper->readLocalChangesAwaitingFromCache();
H A Dpush.php14 var $helper = null; variable in action_plugin_git_push
17 $this->helper =& plugin_load('helper', 'git');
18 if (is_null($this->helper)) {
36 $this->helper->changeReadOnly(false);
/plugin/tabinclude/syntax/
H A Dembed.php14 $this->helper = plugin_load('helper','tabinclude');
24 return $this->helper->getTabPages($match);
32 $this->helper->renderEmbedTabs($renderer,$tabs,$init_page_idx,$class);
35 $this->helper->getOdtHtml($renderer,$tabs);
H A Dinline.php14 $this->helper = plugin_load('helper','tabinclude');
25 return $this->helper->getTabPages($match); // inline mode
34 $this->helper->renderTabsHtml($renderer,$tabs,$init_page_idx,$class);
37 $this->helper->getOdtHtml($renderer,$tabs);
H A Dlink.php14 $this->helper = plugin_load('helper','tabinclude');
24 return $this->helper->getTabPages($match);
32 $this->helper->renderLinkTabs($renderer,$tabs,$init_page_idx,$class);
35 $this->helper->getOdtHtml($renderer,$tabs);
H A Dlines.php16 $this->helper = plugin_load('helper','tabinclude');
28 return $this->helper->getTabPages($match,false);
36 $this->helper->renderTabsHtml($renderer,$tabs,$init_page_idx,$class);
39 $this->helper->getOdtHtml($renderer,$tabs);
/plugin/statdisplay/
H A Dcli.php52 $helper = plugin_load('helper', 'statdisplay_log');
55 $helper->resetLogCache();
59 $this->info(sprintf('%.2f%%', $helper->progress()));
60 } while ($helper->parseLogData($maxlines));
/plugin/task/syntax/
H A Dtasks.php10 protected $helper = NULL; variable in syntax_plugin_task_tasks
16 $this->helper = plugin_load('helper', 'task');
57 if ($this->helper) $pages = $this->helper->getTasks($ns, NULL, $filter, $user);
74 if ($this->helper) $renderer->doc .= $this->helper->_newTaskForm($ns);
100 if ($this->helper) $renderer->doc .= $this->helper->_newTaskForm($ns);
137 if ($this->helper) $renderer->doc .= $this->helper->_newTaskForm($ns);
298 if($this->helper->_isResponsible($user)) {
/plugin/tplinc/
H A Dadmin.php13 protected $helper; variable in admin_plugin_tplinc
20 $this->helper = plugin_load('helper', 'tplinc');
39 if ($this->helper->saveAssignments($INPUT->arr('a'))) {
73 $assignments = $this->helper->loadAssignments();
138 if ($locations === null) $locations = $this->helper->getLocations();
/plugin/dwcommits/
H A Dsyntax.php22 private $helper; variable in syntax_plugin_dwcommits
26 $this->helper =& plugin_load('helper', 'dwcommits');
134 $remote_url = $this->helper->setup_syntax($val);
170 $this->db = $this->helper->_getDB();
172 list($arr,$q) = $this->helper->select_all($result);
175 $this->output .= $this->helper->format_result_table($arr,$result);
/plugin/tablelayout/action/
H A Daction.php66 $helper = $this->loadHelper('tablelayout');
67 $newSyntax = $helper->buildSyntaxFromJSON($INPUT->str('tablelayout'));
75 $helper = $this->loadHelper('tablelayout');
76 $newSyntax = $helper->buildSyntaxFromJSON($INPUT->str('tablelayout'));
127 $helper = $this->loadHelper('tablelayout');
128 $newSyntax = $helper->buildSyntaxFromJSON($newLayoutJSON);
/plugin/mediasyntax/
H A Daction.php12 public $helper = null;
16 $this->helper = plugin_load('helper', 'mediasyntax'); variable in action_plugin_mediasyntax
56 // check for stored toplevel ID in helper plugin
58 if(!isset($this->helper->toplevel_id))
69 if(!isset($this->helper->toplevel_id))
71 $this->helper->toplevel_id = $ID;
73 $this->helper->parse_instructions($ID, $ins);
78 $this->helper->sec_close = false;
171 $page = cleanID($this->helper
[all...]
/plugin/poldek/
H A Daction.php43 $helper = $this->loadHelper($this->getPluginName(), true);
44 $helper->sync(true);
64 $helper = $this->loadHelper($this->getPluginName(), true);
65 $cache->depends['files'][] = $helper->getCache();
/plugin/pagetitle/syntax/
H A Dbreadcrumb.php64 static $helper;
71 isset($helper) || $helper = $this->loadHelper($this->getPluginName());
73 $renderer->doc .= $helper->html_youarehere(1, $id);
/plugin/dokumicrobugtracker/
H A Dsyntax.php74 $helper = null;
76 $helper = plugin_load('helper','captcha');
77 if(!is_null($helper) && $helper->isEnabled())
79 return $helper->check();
384 $helper = null;
386 $helper = plugin_load('helper','captcha'); }
387 if(!is_null($helper) && $helper->isEnabled()) {
388 $ret .= '<p>'.$helper->getHTML().'</p>';}
/plugin/usecounter/
H A Ddokuwiki_plugin_page.wiki4 description: Provides a helper that can be used in other plugins to count the occurences of any obj…
7 type : helper
13 tags : helper
29 This plugin provides a helper class that manages the amount of occurences of any given object.
33 …geOf(string $id) - indicates to the helper that the object with the given identifier is used (once…
36 The helper is implemented as a Singleton instance, so a particular identifier could be used accross…
/plugin/translation/_test/
H A DBasicTest.php61 /** @var \helper_plugin_translation $helper */
62 $helper = plugin_load('helper', 'translation', true);
64 $actual_result = $helper->buildTransID($inputLang, $inputID);
119 /** @var \helper_plugin_translation $helper */
120 $helper = plugin_load('helper', 'translation');
121 $helper->loadTranslationNamespaces();
/plugin/htmlokay/
H A Daction.php19 var $helper; variable in action_plugin_htmlOKay
77 $this->helper->get_info();
79 $namespace = $this->helper->get_namespace();
83 $access_file = $this->helper->get_access_file(HTMLOK_ACCESS_DIR, $namespace);
87 … $INFO['htmlOK_access_scope'] = $this->helper->get_access_scope($access_file);
89 $this->saved_inf = $this->helper->get_saved_inf();
136 $this->helper = $this->loadhelper('htmlOKay',1);
182 …$this->JS_ErrString .= $this->get_JSErrString("hmtlOK_access_level: " . $this->helper->get_access…

12345678910>>...20