Home
last modified time | relevance | path

Searched refs:pageId (Results 76 – 87 of 87) sorted by last modified time

1234

/plugin/webcomponent/_test/
H A Dbutton.test.php47 $pageId = webcomponent::getNameSpace() . 'test_indexer';
58 saveWikiText($pageId, $doku_text, 'test_indexer test base');
59 idx_addPage($pageId);
H A Djs.test.php47 $pageId = webcomponent::getNameSpace() . $test_name;
49 saveWikiText($pageId, $doku_text, $test_name);
50 idx_addPage($pageId);
52 $testResponse = $testRequest->get(array('id' => $pageId));
/plugin/findologicxmlexport/
H A DDokuwikiXMLExport.php142 private function getName($pageId) argument
144 $metadata = p_get_metadata($pageId);
154 private function getSummary($pageId) argument
156 $metadata = p_get_metadata($pageId);
168 return rawWiki($pageId);
177 private function getUrl($pageId) argument
179 $url = wl($pageId, '', true);
189 private function getDateAdded($pageId) argument
204 private function getPageId($pageId) argument
206 return $pageId;
[all …]
/plugin/404manager/
H A Daction.php564 private function addToMessagePagesWithSameName($pageId) argument
569 $pageName = noNS($pageId);
592 … "doku.php?id=" . $pageId . "&do=search&q=" . rawurldecode($pageName),
/plugin/fetchmedia/action/
H A Dajax.php82 protected function lockAndDownload($pageId, $link) { argument
83 $lock = checklock($pageId);
87 lock($pageId);
89 $results = $this->downloadExternalFile($pageId, $link);
93 unlock($pageId);
97 protected function downloadExternalFile($pageId, $link) { argument
101 $id = getNS(cleanID($pageId)) . ':' . $fn;
164 $text = rawWiki($pageId);
169 if (filemtime(wikiFN($pageId)) == time()) {
172 … saveWikiText($pageId, $newText, 'File ' . hsc($link) . ' downloaded by fetchmedia plugin');
/plugin/database2/
H A Dmedia.php149 $pageId ) argument
162 $this->explicitPageID = $pageId;
/plugin/rrdgraph/
H A Daction.php19 public $pageId; variable in rrdMediaInfo
62 $result->pageId = implode(':', $parts);
137 …$rrdGraphHelper->sendRrdImage($mediaPath->pageId, $mediaPath->imageId, $rangeNr, $mode, $bindingSo…
H A Dhelper.php22 private $pageId; variable in cache_rrdgraphbase
34 public function __construct($pluginName, $pageId, $key, $ext) { argument
35 $this->pageId = $pageId;
38 parent::__construct($pageId . '/' . $key, $ext);
47 wikiFN($this->pageId)
263 * @param String $pageId Wiki page id.
278 * @param String $pageId Wiki page id.
282 public function fetchRecipe($pageId, $recipeName) { argument
290 p_wiki_xhtml($pageId);
297 …if (empty($this->localRecipeCache[$pageId . "/" . $recipeName])) $this->localRecipeCache[$pageId .…
[all …]
/plugin/authgoogle/google/contrib/
H A DGoogle_BloggerService.php183 * @param string $pageId The ID of the page to get.
187 public function get($blogId, $pageId, $optParams = array()) { argument
188 $params = array('blogId' => $blogId, 'pageId' => $pageId);
/plugin/rtmchecklist/
H A Daction.php132 $pageId = $INPUT->str('id');
133 …$wikitext.= "[[".htmlspecialchars($pageId)."|".$this->getLang('go_back_to').htmlspecialchars($page…
/plugin/chat/
H A Dscript.js110 function Ajax_chat_class(objectName, outId, pageId, lastRefresh, window) { argument
126 this.pageId = pageId;
284 this.send_sack.encVar('pageId', self.pageId);
292 '&pageId='+encodeURIComponent(this.pageId)+
382 this.send_sack.encVar('pageId', self.pageId);
391 '&pageId='+encodeURIComponent(self.pageId)+
458 self.check_sack.encVar('pageId', self.pageId);
464 'call=checkAndGet&pageId='+encodeURIComponent(self.pageId)+'&time='+self.lastRefresh);
554 function new_ajax_chat(outId, pageId, lastRefresh) { argument
555 ajax_chat = new Ajax_chat_class("ajax_chat", outId, pageId, lastRefresh, window);
[all …]
H A Dajax.php182 if(empty($pageId)) {
187 $pageFN = wikiFN($pageId);
205 if(empty($pageId)) {
218 $pageFN = wikiFN($pageId);
239 if(empty($pageId)) {
266 while (checklock($pageId)) {
269 lock($pageId);
293 unlock($pageId);
310 $pageFN = wikiFN($pageId);
318 lock($pageId);
[all …]

1234