Home
last modified time | relevance | path

Searched refs:hlp (Results 1 – 25 of 112) sorted by last modified time

12345

/plugin/dbquery/syntax/
H A Dquery.php49 $hlp = plugin_load('helper', 'dbquery');
51 $qdata = $hlp->loadDataFromPage($data['name']);
52 $result = $hlp->executeQuery($qdata['codeblocks']['_']);
/plugin/dbquery/_test/
H A DHelperTest.php16 protected $hlp; variable in dokuwiki\\plugin\\dbquery\\test\\HelperTest
22 $this->hlp = plugin_load('helper', 'dbquery');
38 $actual = $this->hlp->gatherVariables();
60 $actual = $this->hlp->gatherVariables();
66 $pdo = $this->hlp->getPDO('sqlite:', '', '');
77 $sth = $this->hlp->prepareStatement($pdo, $sql, $parameters);
/plugin/siteexport/
H A DMenuItem.php35 $hlp = plugin_load('helper', 'siteexport');
36 return $hlp->getLang('siteexport_button');
/plugin/struct/meta/
H A DSchemaEditor.php23 protected $hlp;
32 $this->hlp = plugin_load('helper', 'struct_config');
53 <th>{$this->hlp->getLang('editor_sort')}</th>
54 <th>{$this->hlp->getLang('editor_label')}</th>
55 <th>{$this->hlp->getLang('editor_multi')}</th>
56 <th>{$this->hlp->getLang('editor_conf')}</th>
57 <th>{$this->hlp->getLang('editor_type')}</th>
58 <th>{$this->hlp->getLang('editor_enabled')}</th>
22 protected $hlp; global() variable in dokuwiki\\plugin\\struct\\meta\\SchemaEditor
H A DValueValidator.php13 protected $hlp; variable in dokuwiki\\plugin\\struct\\meta\\ValueValidator
23 $this->hlp = plugin_load('helper', 'struct_db');
83 $prefix = sprintf($this->hlp->getLang('validation_prefix'), $label);
/plugin/struct/
H A Dremote.php21 /** @var helper_plugin_struct hlp */
22 protected $hlp;
31 $this->hlp = plugin_load('helper', 'struct');
55 return $this->hlp->getData($page, $schema, $time);
86 $this->hlp->saveData($page, $data, $summary, $minor);
111 $schemas = $this->hlp::getSchema($schema ?: null);
18 protected $hlp; global() variable in remote_plugin_struct
/plugin/struct/types/
H A DAbstractBaseType.php62 protected $hlp;
544 if (is_null($this->hlp)) $this->hlp = plugin_load('helper', 'struct');
545 return $this->hlp->getLang($string);
61 protected $hlp = null; global() variable in dokuwiki\\plugin\\struct\\types\\AbstractBaseType
H A DTag.php61 /** @var \helper_plugin_struct_db $hlp */
62 $hlp = plugin_load('helper', 'struct_db');
63 $sqlite = $hlp->getDB();
/plugin/struct/action/
H A Dmove.php47 /** @var helper_plugin_struct_db $hlp */
48 $hlp = plugin_load('helper', 'struct_db');
49 $this->db = $hlp->getDB(false);
/plugin/starred/
H A Dsyntax.php58 $hlp = plugin_load('helper', 'starred');
59 $starred = $hlp->loadStars(null, $data['limit']);
81 $R->doc .= $hlp->starHtml($ID, $pid, false);
/plugin/tagging/
H A Dsyntax.php73 /** @var helper_plugin_tagging $hlp */
74 $hlp = plugin_load('helper', 'tagging');
82 $tags = $hlp->findItems(array('tagger' => $data['user']), 'tag', $data['limit']);
84 $renderer->doc .= $hlp->html_cloud($tags, 'tag', array($hlp, 'linkToSearch'), true, true);
90 $pids = $hlp->findItems(array('tag' => $data['tag']), 'pid', $data['limit']);
92 $renderer->doc .= $hlp->html_page_list($pids);
107 $tags = $hlp->findItems(['pid' => $hlp->globNamespace($data['ns'])], 'tag', $data['limit']);
108 $renderer->doc .= $hlp
[all...]
H A Dadmin.php10 private $hlp; variable in admin_plugin_tagging
13 $this->hlp = plugin_load('helper', 'tagging');
31 checkSecurityToken() && $this->hlp->deleteInvalidTaggings();
34 if (!$this->hlp->getParams()) {
35 $this->hlp->setDefaultSort();
39 $this->hlp->setDefaultSort();
51 echo $this->hlp->html_table();
53 echo $this->hlp->html_clean();
/plugin/tagging/action/
H A Delasticsearch.php55 /** @var helper_plugin_tagging $hlp */
56 $hlp = plugin_load('helper', 'tagging');
57 $tags = $hlp->findItems(['pid' => $data['uri']], 'tag');
59 $data['tagging'] = array_map(function ($tag) use ($hlp) {
60 return $hlp->cleanTag($tag);
92 /** @var helper_plugin_tagging $hlp */
93 $hlp = plugin_load('helper', 'tagging');
100 $matches[1] = array_map([$hlp, 'cleanTag'], $matches[1]);
H A Dmain.php97 /** @var helper_plugin_tagging $hlp */
98 $hlp = plugin_load('helper', 'tagging');
105 $pages = $hlp->findItems($filter, 'pid', 1);
126 /** @var helper_plugin_tagging $hlp */
127 $hlp = plugin_load('helper', 'tagging');
133 if ($INFO['writable'] && $hlp->getUser()) {
134 $hlp->replaceTags(
135 $id, $hlp->getUser(),
141 $hlp->updateElasticState($id);
144 $tags = $hlp
[all...]
H A Dsearch.php151 /** @var helper_plugin_tagging $hlp */
152 $hlp = plugin_load('helper', 'tagging');
153 $this->allTagsByPage = $hlp->getAllTagsByPage();
165 $this->tagFilter += array_map([$hlp, 'cleanTag'], $matches[1]);
185 /** @var helper_plugin_tagging $hlp */
186 $hlp = plugin_load('helper', 'tagging');
189 $pages = $hlp->searchPages($this->tagFilter);
242 /** @var helper_plugin_tagging $hlp */
243 $hlp = plugin_load('helper', 'tagging');
245 $terms = $hlp
[all...]
/plugin/recommend/helper/
H A Dassignment.php49 $hlp = $this;
50 $matches = array_filter($assignments, function ($data) use ($hlp) {
51 return $hlp::matchPagePattern($data['pattern']);
/plugin/recommend/
H A DMenuItem.php29 $hlp = plugin_load('action', 'recommend');
30 return $hlp->getLang('menu_recommend');
/plugin/translation/syntax/
H A Dnotrans.php14 protected $hlp;
21 $this->hlp = plugin_load('helper', 'translation');
13 protected $hlp = null; global() variable in syntax_plugin_translation_notrans
H A Dtrans.php44 /** @var helper_plugin_translation $hlp */
45 $hlp = plugin_load('helper', 'translation');
46 $renderer->doc .= $hlp->showTranslations();
/plugin/dw2pdf/
H A DMenuItem.php44 $hlp = plugin_load('action', 'dw2pdf');
45 return $hlp->getLang('export_pdf_button');
/plugin/oauth/
H A DOAuthManager.php195 /** @var \helper_plugin_oauth $hlp */
196 $hlp = plugin_load('helper', 'oauth');
198 if (!$hlp->checkMail($userdata['mail'])) {
199 throw new Exception('rejectedEMail', [implode(', ', $hlp->getValidDomains())]);
308 /** @var \helper_plugin_oauth $hlp */
309 $hlp = plugin_load('helper', 'oauth');
310 $srv = $hlp->loadService($servicename);
H A DAdapter.php58 /** @var \helper_plugin_oauth $hlp */
59 $hlp = plugin_load('helper', 'oauth');
64 $hlp->redirectURI()
H A DRedirectSetting.php22 /** @var \helper_plugin_oauth $hlp */
23 $hlp = plugin_load('helper', 'oauth');
26 $value = '<code>' . $hlp->redirectURI() . '</code>';
/plugin/oauth/action/
H A Dlogin.php22 protected $hlp;
31 $this->hlp = plugin_load('helper', 'oauth');
72 $this->hlp->showException($e, 'login failed');
142 $validDomains = $this->hlp->getValidDomains();
152 foreach ($this->hlp->listServices() as $service) {
181 $enabledServices = $this->hlp->listServices();
19 protected $hlp; global() variable in action_plugin_oauth_login
H A Duser.php20 protected $hlp;
29 $this->hlp = plugin_load('helper', 'oauth');
80 $services = array_keys($this->hlp->listServices());
115 $services = $this->hlp->listServices();
158 $services = $this->hlp->listServices();
17 protected $hlp; global() variable in action_plugin_oauth_user

12345