| /plugin/shorty/ |
| D | helper.php | 54 function getShortUrl($pageID, $service='default') { argument 63 $shortURL = $this->getBitlyURL($pageID, $service); 66 $shortURL = $this->getTinyurlURL($pageID); 69 $shortURL = $this->getyourlsURL($pageID); 84 function getBitlyURL($pageID, $domain) { argument 86 $url = $this->readShortUrl($pageID, $domain); 89 $longUrl = rawurlencode(wl($pageID,'',true)); 104 $this->writeShortUrl($pageID, $url, $domain); 115 function getyourlsURL($pageID) { argument 117 $url = $this->readShortUrl($pageID, 'yourls'); [all …]
|
| /plugin/shorturl/ |
| D | helper.php | 62 function autoGenerateShortUrl ($pageID) { argument 64 if (in_array($pageID, $redirects)) { 65 $shortID = array_search($pageID, $redirects); 67 $shortID = $this->generateShortUrl($pageID); 81 function generateShortUrl($pageID) { argument 90 $hex = md5($pageID); 113 if ( $redirects["$shorturl"] && $redirects["$shorturl"] != $pageID ) { 117 $redirects["$shorturl"] = $pageID; 136 function shorturlPrintLink ($pageID) { argument 144 if (in_array($pageID, $redirects)) { [all …]
|
| /plugin/catmenu/syntax/ |
| H A D | catmenu.php | 163 $pageID = null; 166 $pageID = "$childNamespace:$start"; 169 $pageID = "$childNamespace:$childID"; 172 $pageID = cleanID($namespace !== '' ? ($namespace . ':' . $childID) : $childID); 175 $permission = auth_quickaclcheck($pageID); 180 $title = $pageID ? p_get_first_heading($pageID) : $pageID; 182 if ($skipPageWithoutTitle || empty($pageID)) { 185 $title = noNS($pageID); 190 'url' => $pageID ? wl($pageID) : null, 191 'icon' => $this->getPageImage($pageID), [all …]
|
| /plugin/pagesicon/ |
| H A D | helper.php | 99 $pageID = noNS($targetPage); 103 $resolved = str_replace('~pagename~', $pageID, $tpl); 112 … function buildConfiguredCandidatesFromRaw(string $raw, string $namespace, string $pageID): array { argument 117 $name = str_replace('~pagename~', $pageID, $entry); 130 …private function buildConfiguredCandidates(string $namespace, string $pageID, string $sizeMode): a… argument 134 $big = $this->buildConfiguredCandidatesFromRaw($bigRaw, $namespace, $pageID); 135 $small = $this->buildConfiguredCandidatesFromRaw($smallRaw, $namespace, $pageID); 185 …private function resolveOwnPageIconId(string $namespace, string $pageID, string $sizeMode, array $… argument 186 $imageNames = $this->buildConfiguredCandidates($namespace, $pageID, $sizeMode); 210 $pageID = noNS($namespace); [all …]
|
| H A D | action.php | 89 $pageID = noNS((string)$ID); 92 $favicon = $helper->getPageIconUrl($namespace, $pageID, $sizeMode, ['w' => $size]); 230 $pageID = noNS($targetPage); 232 …xists($helper, 'getPageIconId')) ? (string)$helper->getPageIconId($namespace, $pageID, 'big') : ''; 233 …sts($helper, 'getPageIconId')) ? (string)$helper->getPageIconId($namespace, $pageID, 'small') : ''; 356 $pageID = noNS($defaultTarget); 358 …hod_exists($helper, 'getPageIconId')) ? $helper->getPageIconId($namespace, $pageID, 'big') : false; 359 …d_exists($helper, 'getPageIconId')) ? $helper->getPageIconId($namespace, $pageID, 'small') : false; 439 $pageID = noNS((string)$ID); 444 $logoMediaID = $helper->getPageIconId($namespace, $pageID, $sizeMode); [all …]
|
| H A D | DOKU_EN | 71 | ''getPageIconId($namespace, $pageID, $size = "bigorsmall")'' | ''2026-03-09'' | Returns the media… 73 | ''getPageIconUrl($namespace, $pageID, $size = "bigorsmall", $params = ['width' => 55], &$mtime = …
|
| H A D | DOKU | 71 | ''getPageIconId($namespace, $pageID, $size = 'bigorsmall')'' | ''2026-03-09'' | Retourne le media… 73 | ''getPageIconUrl($namespace, $pageID, $size = 'bigorsmall', $params = ['width' => 55], &$mtime = …
|
| /plugin/struct/_test/ |
| H A D | ImportPageCSVTest.php | 58 $pageID = 'new:page'; 62 [$pageID, 'a', 'c', 'b,e', 'd',], 64 $templateFN = substr(wikiFN($pageID), 0, -1 * strlen('page.txt')) . '_template.txt'; 78 $assignment->addPattern($pageID, 'schema1'); 82 $schemaData = mock\AccessTable::getPageAccess('schema1', $pageID); 86 'PID' => $pageID, 94 $this->assertTrue(page_exists($pageID)); 101 $text = file_get_contents(wikiFN($pageID));
|
| /plugin/visualindex/syntax/ |
| H A D | visualindex.php | 146 $pageID = $item['pageID']; 168 $title = str_replace('_', ' ', $pageID); 173 $logoUrl = $this->getPageImage($itemNamespace, $pageID); 258 private function getPageImage($namespace, $pageID = null) { argument 259 if(!$pageID) { 262 $pageID = $pageNamespaceInfo['pageID']; 269 …$iconUrl = $helper->getPageIconUrl((string)$namespace, (string)$pageID, 'bigorsmall', ['width' => … 282 …$iconUrl = $helper->getImageIcon((string)$namespace, (string)$pageID, 'bigorsmall', ['width' => 55… 284 …$iconUrl = $helper->getImageIcon((string)$namespace, (string)$pageID, 'bigorsmall', ['width' => 55… 294 private function createListItem($parentNamespace, $pageID, $isHomepage = false) { argument [all …]
|
| /plugin/catmenu/helper/ |
| H A D | namespace.php | 32 $pageID = (string)array_pop($parts); 40 'pageID' => $pageID, 50 public function isHomepage(string $pageID, string $parentID): bool argument 54 return $pageID === $startPageID || ($parentID !== '' && $pageID === $parentID);
|
| /plugin/hidepages/ |
| D | action.php | 30 $pageID = $event->data['id']; 36 $metaHidden = p_get_metadata($pageID, 'hidepage'); 46 if($conf['allowdebug']) dbg("hidepages plugin - suppressed page: " . $pageID); 51 if($conf['allowdebug']) dbg("hidepages plugin - suppressed page: " . $pageID);
|
| /plugin/visualindex/action/ |
| H A D | prosemirror.php | 25 $pageID = array_pop($namespaces); 33 'pageID' => $pageID, 39 private function isHomepage(string $pageID, string $parentID): bool argument 43 return $pageID === $startPageID || ($parentID !== '' && $pageID === $parentID);
|
| /plugin/database2/ |
| D | media.php | 85 list( $pageID, $ioIndex, $column ) = $source; 87 $session = $_SESSION['database2'][$pageID]['tables'][$ioIndex]['editors'][$column]; 115 list( $dsn, $authSlot, $table, $column, $idColumn, $rowid, $pageID, 124 $salt = $_SESSION['database2'][$pageID]['tables'][$ioIndex]['linkedMediaSalts'][$t]; 219 $db = new Database2_media( $dsn, $authSlot, $table, $ioIndex, $pageID );
|
| /plugin/authorlist/ |
| D | helper.php | 21 protected $pageID; variable in helper_plugin_authorlist 67 public function setOptions($pageID, $data){ argument 69 $this->pageID = $pageID;
|
| /plugin/tagfilter/ |
| D | helper.php | 140 * @param string $pageID 143 public function getTagsByPageID($pageID) argument 145 $meta = p_get_metadata($pageID, 'subject');
|
| /plugin/siteexport/syntax/ |
| H A D | toc.php | 401 list($pageID, $pageReference) = explode("#", $instr[1][0], 2); 403 if (in_array($pageID, $this->includedPages)) { 408 $pageNameLink = empty($pageReference) ? sectionID($pageID, $check) : $pageReference;
|
| /plugin/pdftools/tpl/info/ |
| D | README.txt | 54 * ''@ID@'' -- The article's pageID
|
| /plugin/pdftools/tpl/kompakt/ |
| D | README.txt | 54 * ''@ID@'' -- The article's pageID
|
| /plugin/pdftools/tpl/checkliste2/ |
| D | README.txt | 54 * ''@ID@'' -- The article's pageID
|
| /plugin/pdftools/tpl/checkliste/ |
| D | README.txt | 54 * ''@ID@'' -- The article's pageID
|
| /plugin/dw2pdf/tpl/default/ |
| H A D | README.txt | 56 * ''@ID@'' -- The article's pageID
|
| /plugin/pdftools/tpl/minimal/ |
| D | README.txt | 56 * ''@ID@'' -- The article's pageID
|
| /plugin/pdftools/tpl/standard/ |
| D | README.txt | 56 * ''@ID@'' -- The article's pageID
|
| /plugin/pdftools/tpl/onlylogo/ |
| D | README.txt | 56 * ''@ID@'' -- The article's pageID
|
| /plugin/aichat/ |
| H A D | AGENTS.md | 157 - Chunk IDs are calculated as: pageID * 100 + chunk_sequence (pageIDs come from DokuWiki's internal…
|