Home
last modified time | relevance | path

Searched refs:helper (Results 1 – 25 of 493) sorted by last modified time

12345678910>>...20

/plugin/twofactoremail/
H A Ddeleted.files3 helper.php
/plugin/nspages/printers/
H A DprinterNice.php40 $helper = new rendererXhtmlHelper($this->renderer, $actualNbCols, $this->plugin, $this->anchorName);
42 $helper->openColumn();
45 $helper->printHeaderChar($firstCharOfLastAddedPage);
46 $helper->openListOfItems();
53 $helper->closeListOfItems();
54 $helper->closeColumn();
55 $helper->openColumn();
60 $helper->printHeaderChar($firstCharOfLastAddedPage);
62 $helper->printHeaderChar($firstCharOfLastAddedPage, true);
64 $helper
[all...]
/plugin/dbquery/
H A Ddeleted.files5 _test/helper.test.php
/plugin/structpublish/_test/
H A Drevision.test.php77 $helper = plugin_load('helper', 'structpublish_publish');
80 $helper->saveRevision(Constants::ACTION_APPROVE);
87 $helper->saveRevision(Constants::ACTION_PUBLISH, '1');
102 $helper->saveRevision(Constants::ACTION_PUBLISH, '2');
/plugin/structpublish/action/
H A Dmigration.php31 /** @var \helper_plugin_struct_db $helper */
32 $helper = plugin_load('helper', 'struct_db');
35 if (!$helper) {
39 $sqlite = $helper->getDB();
H A Dpublish.php36 /** @var helper_plugin_structpublish_publish $helper */
37 $helper = plugin_load('helper', 'structpublish_publish');
38 $newRevision = $helper->saveRevision(key($in), $INPUT->str('version'));
41 $notifyHelper = plugin_load('helper', 'structpublish_notify');
H A Drevisions.php26 /** @var helper_plugin_structpublish_db $helper */
27 $helper = plugin_load('helper', 'structpublish_db');
29 if (!$helper->isPublishable()) {
/plugin/structpublish/meta/
H A DAssignments.php48 /** @var \helper_plugin_structpublish_db $helper */
49 $helper = plugin_load('helper', 'struct_db');
50 $this->sqlite = $helper->getDB();
84 $dbHelper = plugin_load('helper', 'structpublish_db');
229 $helper = plugin_load('helper', 'structpublish_assignments');
233 if ($helper->matchPagePattern($row['pattern'], $page, $pns)) {
/plugin/diagrams/action/
H A Daction.php14 protected $helper; variable in action_plugin_diagrams_action
25 $this->helper = plugin_load('helper', 'diagrams');
88 if (!$this->helper->isDiagram($svg)) {
H A Dmediafile.php17 protected $helper; variable in action_plugin_diagrams_mediafile
32 $this->helper = plugin_load('helper', 'diagrams');
71 $this->helper->isDiagramFile($file)
101 if (!$this->helper->isDiagramFile($file)) {
133 if ($event->data['ext'] === 'svg' && $this->helper->isDiagramFile($event->data['file'])) {
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/diagrams/syntax/
H A Dembed.php35 /** @var helper_plugin_diagrams $helper */
36 $helper = plugin_load('helper', 'diagrams');
37 if (!$helper->isDiagram($svg)) return false;
H A Dmediafile.php52 /** @var helper_plugin_diagrams $helper */
53 $helper = plugin_load('helper', 'diagrams');
54 if (!$data['type'] == 'internalmedia' || !$helper->isDiagramFile(mediaFN($data['src']))) {
/plugin/struct/
H A Ddeleted.files73 helper/aggregation.php
74 helper/column.php
75 helper/serial.php
/plugin/struct/meta/
H A DAccessTable.php126 /** @var \helper_plugin_struct_db $helper */
127 $helper = plugin_load('helper', 'struct_db');
128 $this->sqlite = $helper->getDB();
H A DAggregationTable.php29 $this->renderer->cdata($this->helper->getLang('none'));
135 $fltrs[] = sprintf('"%s" %s "%s"', $column, $this->helper->getLang("comparator $comp"), $value);
141 $this->helper->getLang('tablefilteredby'),
146 $this->renderer->internallink($this->id, $this->helper->getLang('tableresetfilter'));
231 'title="' . $this->helper->getLang('sort') . '">' . hsc($header) . '</a>';
389 $this->renderer->cdata($this->helper->getLang('none'));
454 $this->renderer->doc .= '<a href="' . $link . '" class="prev">' . $this->helper->getLang('prev') . '</a>';
463 $this->renderer->doc .= '<a href="' . $link . '" class="next">' . $this->helper->getLang('next') . '</a>';
488 $this->helper->getLang('csvexport') . '</a>';
65 protected $helper; global() variable in dokuwiki\\plugin\\struct\\meta\\AggregationTable
H A DAggregationValue.php43 $this->renderer->cdata($this->helper->getLang('none'));
50 protected $helper; global() variable in dokuwiki\\plugin\\struct\\meta\\AggregationValue
H A DAssignments.php49 /** @var \helper_plugin_struct_db $helper */
50 $helper = plugin_load('helper', 'struct_db');
51 $this->sqlite = $helper->getDB();
H A DCSVImporter.php58 $db = plugin_load('helper', 'struct_db');
216 /** @var 'helper_plugin_struct $helper */
217 $helper = plugin_load('helper', 'struct');
219 $helper->saveData($pid, [$table => $data], 'CSV data imported');
227 $helper->saveLookupData($access, $data);
H A DConfigParser.php45 /** @var \helper_plugin_struct_config $helper */
46 $helper = plugin_load('helper', 'struct_config');
91 $sorts = array_map([$helper, 'parseSort'], $sorts);
102 $flt = $helper->parseFilterLine($logic, $val);
H A DPageColumn.php82 /** @var \helper_plugin_struct_config $helper */
83 $helper = plugin_load('helper', 'struct_config');
84 return $helper->getLang('pagelabel');
H A DPageMeta.php20 /** @var \helper_plugin_struct_db $helper */
21 $helper = plugin_load('helper', 'struct_db');
22 $this->sqlite = $helper->getDB();
H A DPublishedColumn.php45 /** @var \helper_plugin_struct_config $helper */
46 $helper = plugin_load('helper', 'struct_config');
47 return $helper->getLang('publishedlabel');
H A DRevisionColumn.php78 /** @var \helper_plugin_struct_config $helper */
79 $helper = plugin_load('helper', 'struct_config');
80 return $helper->getLang('revisionlabel');
H A DRowColumn.php45 /** @var \helper_plugin_struct_config $helper */
46 $helper = plugin_load('helper', 'struct_config');
47 return $helper->getLang('rowlabel');

12345678910>>...20