| /template/icke/ |
| D | IckeNavigation.php | 9 public $id; variable in IckeNavigationItem 15 function __construct($id, $link, $isNamespace) { argument 16 $this->id = $id; 19 $this->class = $this->buildClass($id); 23 private function buildClass($id) { argument 24 $id = ltrim($id, ':'); 25 $pos = strpos($id, ':'); 26 if ($pos === false) return $id; 27 return substr($id, 0, $pos); 31 if (!$this->isNamespace) return $this->id; [all …]
|
| D | functions.php | 10 function icke_tplPopupPage($id){ argument 11 $page = p_wiki_xhtml($id,'',false); 123 function icke_translatedID($id, $mustExist = true) { argument 126 return $id; 130 return $id; 132 $translatedId = $translation->locale . ":$id"; 136 return $id; 150 function icke_processFancySearchItem($id) { argument 151 if(!$id) return false; 152 $link = $id; [all …]
|
| /template/dokukitv2/ |
| D | tpl_functions.php | 5 function menulink($id) { argument 6 if(strpos($id, 'http') === 0) { 7 return $id; 8 } elseif(strpos($id, 'www.') === 0) { 9 return $id; 11 if(strpos($id, "#")){ 12 $anchor = substr($id, strpos($id, "#")); 13 $id = substr($id, 0, strpos($id, "#")); 17 if(strpos($id, "?")){ 18 parse_str(substr($id, strpos($id, "?")+1), $urlParameters); [all …]
|
| /template/strap/vendor/php-webdriver/webdriver/lib/Remote/ |
| H A D | RemoteWebElement.php | 29 protected $id; variable in Facebook\\WebDriver\\Remote\\RemoteWebElement 41 * @param string $id 44 public function __construct(RemoteExecuteMethod $executor, $id, $isW3cCompliant = false) argument 47 $this->id = $id; 61 [':id' => $this->id] 77 [':id' => $this->id] 103 $params[':id'] = $this->id; 128 $params[':id'] = $this->id; 155 ':id' => $this->id, 193 ':id' => $this->id, [all …]
|
| H A D | RemoteTargetLocator.php | 50 $id = [JsonWireCompat::WEB_DRIVER_ELEMENT_IDENTIFIER => $frame->getID()]; 52 $id = null; 54 $id = $frame; 62 $id = ['ELEMENT' => $frame->getID()]; 64 $id = null; 66 $id = $frame; 68 $id = (string) $frame; 72 $params = ['id' => $id];
|
| /template/strap/resources/background/ |
| H A D | background1.svg | 10 <g id="Group_243" data-name="Group 243" transform="translate(-1838 1118)"> 11 …<rect id="Rectangle_689" data-name="Rectangle 689" class="cls-1" width="89" height="75" transform=… 12 …<rect id="Rectangle_690" data-name="Rectangle 690" class="cls-1" width="89" height="75" transform=… 13 …<rect id="Rectangle_691" data-name="Rectangle 691" class="cls-1" width="89" height="75" transform=… 14 …<rect id="Rectangle_692" data-name="Rectangle 692" class="cls-1" width="89" height="75" transform=… 15 …<rect id="Rectangle_694" data-name="Rectangle 694" class="cls-1" width="89" height="75" transform=… 16 …<rect id="Rectangle_695" data-name="Rectangle 695" class="cls-1" width="89" height="75" transform=… 17 …<rect id="Rectangle_696" data-name="Rectangle 696" class="cls-1" width="89" height="75" transform=… 18 …<rect id="Rectangle_697" data-name="Rectangle 697" class="cls-1" width="89" height="75" transform=… 19 …<rect id="Rectangle_698" data-name="Rectangle 698" class="cls-1" width="89" height="75" transform=… [all …]
|
| /template/kajukkk/ |
| D | newpage.php | 23 $id=$ns.":".clearID($title); variable 27 $file= $wikidata.str_replace(':','/',$id).'.txt'; 37 $id=$ns.":".clearID($title); variable 41 $file= $wikidata.str_replace(':','/',$id).'.txt'; 48 $id=$title; variable 51 $id=($ns)?$ns.":".$title:$title; variable 58 if ($id){ 59 header("Location: ".$url."doku.php?id=$id&do=edit" ); exit(); 64 function clearID($id) { argument 65 $id=trim($id); [all …]
|
| /template/starterbootstrap/ |
| D | generate_index.php | 16 $id = pathID($file); 19 if ($type=='f' && isHiddenPage($id)) { 27 if ($type == 'f' && file_exists(dirname(wikiFN($id.":".noNS($id))))) $type = 'd'; 30 $target = $id; 38 $nsa = array( $id.":".noNS($id), 39 $id, 40 $id.":".$conf['start'] 59 'id' => $id 63 …,'title' => ($conf['useheading'] && ($title = p_get_first_heading($target)))?$title:$id // NS tit… 65 if (substr_count($id, ":") > 2) $ret = 0;
|
| /template/strap/vendor/symfony/polyfill-php80/ |
| H A D | PhpToken.php | 24 public $id; variable in Symfony\\Polyfill\\Php80\\PhpToken 41 public function __construct(int $id, string $text, int $line = -1, int $position = -1) argument 43 $this->id = $id; 51 if ('UNKNOWN' === $name = token_name($this->id)) { 64 if (\in_array($value, [$this->id, $this->text], true)) { 74 return \in_array($this->id, [\T_WHITESPACE, \T_COMMENT, \T_DOC_COMMENT, \T_OPEN_TAG], true); 92 $id = \ord($token); 95 [$id, $text, $line] = $token; 97 $tokens[$index] = new static($id, $text, $line, $position);
|
| /template/amanuensis/inc/ |
| D | index.php | 155 function build_subindex($index, $id){ argument 158 $temp = diceID($id); 191 function diceID ($id){ argument 193 while ($id){ 194 $dice[]=$id; 195 $id=getNS($id); 207 function diceID_old ($id){ argument 211 $colon=strpos($id, ':' ); 213 $dice[]= substr($id, 0, strpos($id,':')); 214 $id=substr($id, $colon+1); [all …]
|
| /template/strap/ |
| H A D | cli.php | 292 $id = $pageArray['id']; 294 $ID = $id; 306 $indexedOrNot = idx_addPage($id, true, true); 308 …LogUtility::msg("The page {$id} ($pageCounter / $totalNumberOfPages) was indexed and replicated", … 310 …LogUtility::msg("The page {$id} ($pageCounter / $totalNumberOfPages) has an error", LogUtility::LV… 313 …LogUtility::msg("The page {$id} ($pageCounter / $totalNumberOfPages) has an error: " . $e->getMess… 371 $id = $pageArray['id']; 372 $page = MarkupPath::createMarkupFromId($id); 379 echo "Analytics Processing for the page {$id} ($pageCounter / $totalNumberOfPages)\n"; 406 'id' => $id, [all …]
|
| /template/ad-hominem/rest/ |
| H A D | pageinfo.php | 30 $id = $_GET['id']; variable 32 if ($id !== null) { 35 $meta = p_get_metadata($id); 43 $result['pageid'] = $id; 50 $url = wl($id); 55 'page' => wl($id) 59 $url = $conf['baseurl'] . wl($id);
|
| /template/strap/admin/ |
| H A D | pagerules.php | 109 $id = $_POST[PageRules::ID_NAME] ?? null; 128 if ($id == null) { 136 $this->pageRuleManager->updateRule($id, $matcher, $target, $priority); 174 $id = $_POST[PageRules::ID_NAME]; 175 if ($id != null) { 176 $rule = $this->pageRuleManager->getRule($id); 205 if ($id != null) { 206 … echo('<input type="hidden" name="' . PageRules::ID_NAME . '" value="' . $id . '" />'); 254 $id = $row[PageRules::ID_NAME]; 269 … echo(' <input type="hidden" name="' . PageRules::ID_NAME . '" value="' . $id . '" />'); [all …]
|
| /template/dwsimple/dwsimple/ |
| D | simple.php | 14 function mybox ($id, $top, $right, $bottom, $left, $type="px") { argument 15 $this->id =$id; 23 $out[]="#".$this->id; 88 function addline($id, $val=0, $align) { argument 89 $this->line[$id]=new myline($val, $align); 91 function addlineval($id, $val=0) { argument 92 $this->line[$id]->val=$val; 95 foreach ($vals as $id => $val) 96 $this->addline($id, $val, $align); 98 function addbox($id, $top, $right, $bottom, $left) { argument [all …]
|
| /template/plaintext/ |
| D | main.php | 5 $id = $_SERVER["QUERY_STRING"]; variable 6 $id = str_replace("/", ":", $id); variable 7 $id = str_replace("id=", "", $id); variable 8 $file = wikiFN($id);
|
| /template/strap/ComboStrap/ |
| H A D | WikiPath.php | 92 private $id; variable in ComboStrap\\WikiPath 237 $this->id = $this->toDokuWikiIdDriveContextual($pathPart); 241 $this->id = $this->toDokuWikiIdDriveContextual($this->absolutePath); 368 static function createFromUnknownRoot($id): WikiPath argument 370 return new WikiPath($id, WikiPath::UNKNOWN_DRIVE); 388 $id = $parsedQueryArray[$queryId]; 392 $id = substr(str_replace("/", ":", $urlPath), 1); 394 return self::createMarkupPathFromPath(":$id"); 423 static function IdToAbsolutePath($id) argument 425 if (is_null($id)) { [all …]
|
| H A D | Display.php | 26 $id = $tagAttributes->getId(); 28 $id = $tagAttributes->getDefaultGeneratedId(); 29 $tagAttributes->setId($id); 31 $css = "#$id:empty { display: none; }"; 34 ->attachCssInternalStyleSheet("display-none-if-empty-$id", $css);
|
| H A D | PageRules.php | 46 * @param integer $id 49 function ruleExists($id): bool argument 51 $id = strtolower($id); 56 ->setQueryParametrized("SELECT count(*) FROM PAGE_RULES where ID = ?", [$id]); 153 function updateRule($id, $matcher, $target, $priority) argument 162 $id 256 public function getRule($id): array argument 260 ->setQueryParametrized("SELECT * FROM PAGE_RULES where ID = ?", [$id]);
|
| H A D | FetcherTraitWikiPath.php | 50 $id = $tagAttributes->getValueAndRemove(MediaMarkup::$MEDIA_QUERY_PARAMETER); 52 if ($id === null) { 53 $id = $tagAttributes->getValueAndRemove(FetcherRawLocalPath::SRC_QUERY_PARAMETER); 55 if ($id === null) { 56 $id = $tagAttributes->getValueAndRemove(DokuwikiId::DOKUWIKI_ID_ATTRIBUTE); 59 if ($id === null) { 64 $path = WikiPath::toValidAbsolutePath($id);
|
| /template/strap/syntax/ |
| H A D | minimap.php | 367 * @param string $id an id of a namespace (directory) 370 function getNamespaceStartId($id) argument 375 $id = $id . ":"; 377 if (page_exists($id . $conf['start'])) { 379 $homePageId = $id . $conf['start']; 380 } elseif (page_exists($id . noNS(cleanID($id)))) { 382 $homePageId = $id . noNS(cleanID($id)); 383 } elseif (page_exists($id)) { 385 $homePageId = substr($id, 0, -1); 388 $homePageId = $id . $conf['start'];
|
| /template/mantinedoku/images/ |
| D | dokuwiki.svg | 3 <linearGradient id="a"> 7 …<linearGradient id="n" x1="192.04" x2="263.67" y1="262.26" y2="262.26" gradientUnits="userSpaceOnU… 11 …<linearGradient id="p" x1="191.75" x2="255.66" y1="258.92" y2="258.92" gradientUnits="userSpaceOnU… 15 …<linearGradient id="m" x1="184.07" x2="201.41" y1="246.36" y2="246.36" gradientUnits="userSpaceOnU… 16 …<linearGradient id="d" x1="162.76" x2="240.85" y1="184.99" y2="289.5" gradientUnits="userSpaceOnUs… 20 …<linearGradient id="b" x1="140.16" x2="136.14" y1="303.79" y2="195.87" gradientUnits="userSpaceOnU… 24 …<linearGradient id="c" x1="286.16" x2="185.81" y1="262.29" y2="172.32" gradientUnits="userSpaceOnU… 28 …<linearGradient id="h" x1="213.97" x2="244.79" y1="220.07" y2="265.4" gradientUnits="userSpaceOnUs… 32 …<linearGradient id="l" x1="184.31" x2="224.67" y1="241.53" y2="307.53" gradientUnits="userSpaceOnU… 36 …<linearGradient id="e" x1="202.42" x2="206.06" y1="222.05" y2="210.36" gradientUnits="userSpaceOnU… [all …]
|
| /template/r7throot1/ |
| D | functions.php | 96 list($id, $hash) = explode('#', $in[1][0], 2); 97 resolve_pageid(getNS($ID), $id, $exists); 98 if (getNS($id) != $ns) continue; // ignore links to other namespaces 103 if (!$title) $title = hsc(p_get_first_heading($id)); 104 if (!$title) $title = hsc(ucwords(noNS($id))); 107 if ($id == $ID) $out .= '<span class="activetab">'.$title.'</span> '; 108 else $out .= '<a href="'.wl($id).'" class="tab">'.$title.'</a> ';
|
| /template/bootstrap3/inc/Menu/Item/ |
| D | Discussion.php | 23 $discuss_page = str_replace('@ID@', $this->id, tpl_getConf('discussionPage')); 25 $is_discuss_page = strpos($this->id, $discuss_page_raw) !== false; 26 $back_id = str_replace($discuss_page_raw, '', $this->id); 30 $this->id = cleanID($back_id); 34 $this->id = cleanID($discuss_page);
|
| /template/peanutbutter/ |
| D | tpl_functions.php | 114 $id = ''; 117 return '<li class="level'.$item['level'].$class.'" '.$id.'>'; 160 * @param string $id 163 function _tpl_media_isreadable($id) { argument 164 $id = cleanID($id); 165 if(auth_quickaclcheck($id)) {
|
| /template/monochrome/ |
| D | tpl_functions.php | 111 $id = ''; 114 return '<li class="level'.$item['level'].$class.'" '.$id.'>'; 157 * @param string $id 160 function _tpl_media_isreadable($id) { argument 161 $id = cleanID($id); 162 if(auth_quickaclcheck($id)) {
|