Home
last modified time | relevance | path

Searched refs:helper (Results 151 – 175 of 493) sorted by relevance

12345678910>>...20

/plugin/farmsync/meta/
H A DTemplateConflict.php28 $form->addButton("theirs", $this->helper->getLang('button:keep'));
29 $form->addButton("override", $this->helper->getLang('button:overwrite'));
30 $form->addButton("diff", $this->helper->getLang('button:diff'));
H A DUpdateResults.php22 protected $helper; variable in dokuwiki\\plugin\\farmsync\\meta\\UpdateResults
37 $this->helper = plugin_load('helper', 'farmsync');
74 $text = $this->helper->getLang('mergeresult:' . $this->getMergeResult());
/plugin/latexcaption/syntax/
H A Dreference.php14 var $helper = null; variable in syntax_plugin_latexcaption_reference
68 if (!$this->helper)
69 $this->helper = plugin_load('helper', 'latexcaption');
80 …$markup .= $this->getLang($type.$langset).' '.$parnum.'('.$this->helper->number_to_alphabet($num).…
/plugin/randomtables/action/
H A Dajax.php21 $helper = $this->loadHelper('randomtables_helper');
22 $db = $helper->getDB();
63 $helper = $this->loadHelper('randomtables_helper');
64 $db = $helper->getDB();
/plugin/slacknotifier/
H A Daction.php15 use dokuwiki\plugin\slacknotifier\helper\Config;
16 use dokuwiki\plugin\slacknotifier\helper\Context;
17 use dokuwiki\plugin\slacknotifier\helper\Formatter;
/plugin/linkbonus/syntax/
H A Dinterwiki.txt26 var $helper = null;
33 * Constructor. Load helper plugin
36 $this->helper =& plugin_load('helper', 'powerlinks');
37 …if(!$this->helper) msg('Can not load powerlinks helper -- check that plugin is correctly installed…
45 return $this->helper->syntax_getInfo();
49 return $this->helper->syntax_getType();
149 … $set['fetchname_method'] = ($this->helper->TitleAged($link['url']) ) ? 'recheck' : 'cache';
176 … if ($docheck) $set['result_']= $this->helper->getExternalPage($link['url'], $xcontents, $xstatus);
178 $this->helper->composeLink ($link, $set, array($xcontents, $xstatus) );
195 return $this->helper->syntax_render
/plugin/combo/vendor/salesforce/handlebars-php/src/Handlebars/
H A DHelpers.php5 * a collection of helper function. normally a function like
57 * Create new helper container class
61 * (or traversable) or helper is not a callable
65 foreach($this->builtinHelpers as $helper) {
66 $helperName = $this->underscoreToCamelCase($helper);
67 $this->add($helper, [$this, "helper{$helperName}"]);
76 foreach ($helpers as $name => $helper) {
77 $this->add($name, $helper);
83 * Add a new helper t
91 add($name, $helper) global() argument
148 __set($name, $helper) global() argument
[all...]
/plugin/cleanup/
H A Daction.php55 $helper = $this->loadHelper('cleanup', false);
56 $helper->run(true);
57 echo 'cleanup: finished. found '.count($helper->list)." files\n";
/plugin/tag/_test/
H A Dtopic_sort.test.php18 /** @var helper_plugin_tag $helper */
19 private $helper; variable in plugin_tag_topic_sorting_test
28 $this->helper = plugin_load('helper', 'tag');
41 $this->assertEquals($this->pages, $this->extract_ids($this->helper->getTopic('', null, 'mytag')));
/plugin/spatialhelper/
H A Daction.php92 $indexer = plugin_load('helper', 'spatialhelper_index');
123 $indexer = plugin_load('helper', 'spatialhelper_index');
154 if (($helper = plugin_load('helper', 'spatialhelper_sitemap')) !== null) {
155 $kml = $helper->createKMLSitemap($this->getConf('media_kml'));
156 $rss = $helper->createGeoRSSSitemap($this->getConf('media_georss'));
161 $kmlN = $helper->createKMLSitemap($namespace . $this->getConf('media_kml'));
162 $rssN = $helper->createGeoRSSSitemap($namespace . $this->getConf('media_georss'));
207 if (($helper = plugin_load('helper', 'spatialhelper_searc
[all...]
/plugin/structsection/
H A Dyarn.lock42 "@babel/helper-function-name@^7.12.11":
65 "@babel/helper-module-imports@^7.12.1":
111 "@babel/helper-split-export-declaration@^7.11.0", "@babel/helper-split-export-declaration@^7.12.11":
118 "@babel/helper-validator-identifier@^7.10.4", "@babel/helper-validator-identifier@^7.12.11":
267 "@webassemblyjs/helper-fsm@1.9.1":
556 babel-helper-call-delegate@^6.24.1:
566 babel-helper-define-map@^6.24.1:
585 babel-helper-function-name@^6.24.1:
620 babel-helper-regex@^6.24.1:
871 babel-helper-regex "^6.24.1"
[all …]
/plugin/acknowledge/admin/
H A Dassign.php32 /** @var helper_plugin_acknowledge $helper */
33 $helper = plugin_load('helper', 'acknowledge');
40 $helper->saveAssignmentPatterns($patterns);
49 /** @var helper_plugin_acknowledge $helper */
50 $helper = plugin_load('helper', 'acknowledge');
52 $assignments = $helper->getAssignmentPatterns();
/plugin/struct/helper/
H A Dimexport.php37 /** @var \helper_plugin_struct_db $helper */
38 $helper = plugin_load('helper', 'struct_db');
39 $this->sqlite = $helper->getDB(false);
64 /** @var \helper_plugin_struct_db $helper */
65 $helper = plugin_load('helper', 'struct_db');
66 $this->sqlite = $helper->getDB(false);
/plugin/elasticsearch/_test/
H A Dacl.test.php149 /** @var helper_plugin_elasticsearch_acl $helper */
150 $helper = plugin_load('helper', 'elasticsearch_acl');
152 $raw = $helper->getPageACL($page);
153 $actual = $helper->splitRules($raw);
/plugin/loadskin/
H A Daction.php65 $helper = $this->loadHelper('loadskin', true);
66 $helper->origTpl = $conf['template'];
87 $helper = $this->loadHelper('loadskin', true);
88 $event->data = $helper->showTemplateSwitcher().$event->data;
126 $helper = $this->loadHelper('loadskin', true);
127 $tpls = $helper->getTemplates();
/plugin/numbering/
H A Daction.php14 var $helper; variable in action_plugin_numbering
16 $this->helper = plugin_load('helper', 'numbering');
68 $padding = $this->helper->getConfValue('padding');
69 $len = (int) $this->helper->getConfValue('pad_length');
90 $start = $this->helper->getConfValue('nstart');
/plugin/diagrams/action/
H A Dembed.php16 protected $helper; variable in action_plugin_diagrams_embed
27 $this->helper = plugin_load('helper', 'diagrams');
66 if (!$this->helper->isDiagram($svg)) {
110 if (!$this->helper->isDiagram($svg)) {
/plugin/ajaxpeon/
H A Daction.php16 var $helper; variable in action_plugin_ajaxpeon
19 $this->helper = $this->loadHelper('ajaxpeon', false);
57 $orev_list= $this->helper->get_learnorev();
74 $store_txt = $this->helper->merge_wordlist($ori_txt,$rec_txt);
97 $out=$this->helper->get_page_wordlists($pglist);
100 $out=$this->helper->get_learnlist();
/plugin/confmanager/action/
H A Ddeleteicon.php11 var $helper; variable in action_plugin_confmanager_deleteicon
20 $this->helper = plugin_load('helper', 'confmanager');
70 $config = $this->helper->getConfigById($configId);
H A Dupload.php11 var $helper; variable in action_plugin_confmanager_upload
20 $this->helper = plugin_load('helper', 'confmanager');
69 $config = $this->helper->getConfigById($configId);
/plugin/recaptcha2/
H A Daction.php97 $helper = plugin_load('helper','recaptcha2');
98 $recaptcha = $helper->getHTML($param['editform']);
130 $helper = plugin_load('helper', 'recaptcha2');
131 $resp = $helper->check();
/plugin/issuelinks/services/
H A DJira.service.php185 $db = plugin_load('helper', 'issuelinks_db');
205 $db = plugin_load('helper', 'issuelinks_db');
220 $db = plugin_load('helper', 'issuelinks_db');
325 $db = plugin_load('helper', 'issuelinks_db');
351 $db = plugin_load('helper', 'issuelinks_db');
405 $db = plugin_load('helper', 'issuelinks_db');
461 $db = plugin_load('helper', 'issuelinks_db');
/plugin/webdav/core/
H A DServer.php35 global $helper;
37 $helper = plugin_load('helper', 'webdav');
40 $enabled_collections = explode(',', $helper->getConf('collections'));
70 if ($helper->getConf('browser_plugin')) {
/plugin/metadisplay/
H A Dcli.php12 private $helper; variable in cli_plugin_metadisplay
41 $helper = plugin_load('helper','metadisplay_html');
43 $helper = plugin_load('helper','metadisplay_plaintext');
46 $helper->init($clopts);
/plugin/tag/
H A Daction.php41 /* @var helper_plugin_tag $helper */
42 if ($helper = $this->loadHelper('tag')) {
48 $event->data['metadata']['subject'] = $helper->cleanTagList($tags);
82 /* @var helper_plugin_tag $helper */
83 if ($helper = $this->loadHelper('tag')) {
84 $pages = $helper->getTopic($ns, '', $tag);

12345678910>>...20