Home
last modified time | relevance | path

Searched refs:helper (Results 201 – 225 of 493) sorted by path

12345678910>>...20

/plugin/fields/
H A Dsyntax.php19 $this->helper = $this->loadHelper('fields');
73 $renderer->doc .= $this->helper->ODTDisplayUserField($renderer, $field_name);
85 $this->helper->ODTSetUserField($renderer, $field_name,
/plugin/findologicxmlexport/vendor/twig/twig/doc/tags/
H A Dimport.rst10 Imagine we have a helper module that renders forms (called ``forms.html``):
/plugin/fksnewsfeed/
H A Daction.php29 private helper_plugin_newsfeed $helper; variable in action_plugin_newsfeed
32 $this->helper = $this->loadHelper('newsfeed');
114 $news = $this->helper->serviceNews->getById($newsId);
127 $stream = $this->helper->serviceStream->findByName($streamId);
166 $this->helper->serviceNews->create($data);
170 $this->helper->serviceNews->update($news, $data);
177 $stream = $this->helper->serviceStream->findByName($streamName);
183 $this->helper->servicePriority->store($newsId, $stream);
197 $this->helper->servicePriority->update($priority, [
218 $news = $this->helper->serviceNews->getAll();
[all …]
/plugin/fksnewsfeed/admin/
H A Dpush.php14 private helper_plugin_newsfeed $helper; variable in admin_plugin_newsfeed_push
17 $this->helper = $this->loadHelper('newsfeed');
38 $stream = $this->helper->serviceStream->findByName($INPUT->param('news')['stream']);
45 $this->helper->fullParentDependence($targetStreamId, $streamIds);
49 $this->helper->servicePriority->store($newsId, $streamId);
59 $stream = $this->helper->serviceStream->findByName($streamName);
63 $streams = $this->helper->serviceStream->getAll();
70 $allNews = $this->helper->serviceNews->getAll();
73 $news = $this->helper->serviceNews->getById($id);
H A Dstream.php11 private helper_plugin_newsfeed $helper; variable in admin_plugin_newsfeed_stream
14 $this->helper = $this->loadHelper('newsfeed');
31 $streams = $this->helper->serviceStream->getAll();
/plugin/fksnewsfeed/inc/
H A DAbstractStream.php16 protected helper_plugin_newsfeed $helper; variable in FYKOS\\dokuwiki\\Extension\\PluginNewsFeed\\AbstractStream
19 $this->helper = $this->loadHelper('newsfeed');
53 <h5 class="modal-title">' . $this->helper->getLang('edit_stream') . '</h5>
/plugin/fksnewsfeed/inc/renderer/
H A DAbstractRenderer.php14 protected helper_plugin_newsfeed $helper; variable in FYKOS\\dokuwiki\\Extension\\PluginNewsFeed\\Renderer\\AbstractRenderer
16 public function __construct(helper_plugin_newsfeed $helper) { argument
17 $this->helper = $helper;
H A DFykosRenderer.php44 $this->helper->getLang('btn_opt') . '</button>';
60 $html .= '<h5 class="modal-title">' . $this->helper->getLang('btn_opt') . '</h5>';
86 $stream = $this->helper->serviceStream->findByName($streamName);
87 $priority = $this->helper->servicePriority->findByNewsAndStream($id, $stream->streamId);
89 …$priorityValue = new InputElement('number', 'priority[value]', $this->helper->getLang('valid_from'…
102 …$priorityToElement = new InputElement('datetime-local', 'priority[to]', $this->helper->getLang('va…
108 …$form->addButton('submit', $this->helper->getLang('btn_save_priority'))->addClass('btn btn-success…
124 … $editForm->addButton('submit', $this->helper->getLang('btn_edit_news'))->addClass('btn btn-info');
133 …$deleteForm->addButton('submit', $this->helper->getLang('delete_news'))->attr('data-warning', true)
142 … $purgeForm->addButton('submit', $this->helper->getLang('cache_del'))->addClass('btn btn-warning');
[all …]
H A DVyfukRenderer.php33 return $this->helper->getLang($key);
53 $this->helper->getLang('btn_opt') . '</button>';
69 $html .= '<h5 class="modal-title">' . $this->helper->getLang('') . 'Upaviť novinku</h5>';
101 $stream = $this->helper->serviceStream->findByName($streamName);
103 $priority = $this->helper->servicePriority->findByNewsAndStream($id, $stream->streamId);
105 …$priorityValue = new InputElement('number', 'priority[value]', $this->helper->getLang('valid_from'…
118 …$priorityToElement = new InputElement('datetime-local', 'priority[to]', $this->helper->getLang('va…
124 …$form->addButton('submit', $this->helper->getLang('btn_save_priority'))->addClass('btn btn-success…
140 … $editForm->addButton('submit', $this->helper->getLang('btn_edit_news'))->addClass('btn btn-info');
149 …$deleteForm->addButton('submit', $this->helper->getLang('delete_news'))->attr('data-warning', true)
[all …]
/plugin/fksnewsfeed/syntax/
H A Dcarousel.php36 $stream = $this->helper->serviceStream->findByName($param['stream']);
H A Dfeed.php13 private helper_plugin_newsfeed $helper; variable in syntax_plugin_newsfeed_feed
16 $this->helper = $this->loadHelper('newsfeed');
58 $news = $this->helper->serviceNews->getById($param['id']);
83 $innerHtml = $this->helper->renderer->renderContent($data, $params);
87 $formHtml = $this->helper->renderer->renderEditFields($params);
88 return $this->helper->renderer->render($innerHtml, $formHtml, $data);
/plugin/flattr/
H A DCHANGELOG4 * Introduced helper plugin (as preparation for Issue #2)
H A Dsyntax.php47 $helper =& plugin_load('helper', 'flattr');
60 if (in_array($name, $helper->validParameters))
66 $helper->validateParameters($params);
85 $helper =& plugin_load('helper', 'flattr');
86 $helper->insertMissingParameters($params);
89 $renderer->doc .= $helper->getEmbedCode($params);
/plugin/folded/syntax/
H A Ddiv.php16 protected $helper = null; variable in syntax_plugin_folded_div
48 if ($this->helper === null) {
49 $this->helper = plugin_load('helper', 'folded');
51 $folded_id = $this->helper->getNextID();
H A Dspan.php18 protected $helper = null; variable in syntax_plugin_folded_span
49 if ($this->helper === null) {
50 $this->helper = plugin_load('helper', 'folded');
52 $folded_id = $this->helper->getNextID();
/plugin/geotag/
H A Ddeleted.files1 helper.php
/plugin/git/action/
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 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 Dcommit.php14 var $helper = null; variable in action_plugin_git_commit
17 $this->helper =& plugin_load('helper', 'git');
18 if (is_null($this->helper)) {
40 $this->helper->submittChangesForApproval();
59 $this->helper->resetGitStatusCache('local');
H A Dmerge.php14 var $helper = null; variable in action_plugin_git_merge
17 $this->helper =& plugin_load('helper', 'git');
18 if(!$this->helper) msg('Loading the git helper failed.',-1);
49 if(!$this->helper) {
53 $this->helper->resetGitStatusCache('upstream');
54 $this->helper->rebuild_data_plugin_data();
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);
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);
/plugin/git/syntax/
H A Dlocalstatus.php17 var $helper = null; variable in syntax_plugin_git_localstatus
20 $this->helper =& plugin_load('helper', 'git');
21 if(!$this->helper) msg('Loading the git helper in the git_localstatus class failed.', -1);
121 … $this->helper->renderChangesMade($renderer, $repo, 'Commit local');
130 if($this->helper->haveChangesBeenSubmitted() === true)
134 $this->helper->resetGitStatusCache('upstream');
135 $upsptreamUpdatesAvailable = $this->helper->CheckForUpstreamUpdates();
144 $this->helper->renderAdminApproval($renderer);
169 $this->helper->render_commit_selector($renderer, $commits, true);
171 $this->helper->render_changed_files_table($renderer, $commits, $repo);
[all …]
H A Dremotestatus.php17 var $helper = null; variable in syntax_plugin_git_remotestatus
20 $this->helper =& plugin_load('helper', 'git');
21 if(!$this->helper) msg('Loading the git helper in the git_localstatus class failed.', -1);
130 … $this->helper->render_commit_selector($renderer, $commits);
131 … $this->helper->render_changed_files_table($renderer, $commits, $repo);
132 … $this->helper->renderChangesMade($renderer, $repo, 'Merge upstream');
/plugin/googlemap3/
H A Dgooglemap3.js215 if (googleMapArray[i].helper != 'off') {

12345678910>>...20