/dokuwiki/inc/Remote/Response/ |
H A D | Page.php | 19 public $title; variable in dokuwiki\\Remote\\Response\\Page 36 * @param string $title The page title 46 $title = '', argument 59 $this->title = $title ?: $this->retrieveTitle(); 74 $title = p_get_first_heading($this->id); 75 if ($title) { 76 return $title;
|
H A D | PageHit.php | 28 * @param string $title 30 public function __construct($id, $snippet = '', $score = 0, $title = '') argument 32 parent::__construct($id, 0, 0, $title);
|
/dokuwiki/inc/TreeBuilder/Node/ |
H A D | AbstractNode.php | 15 protected ?string $title = null; variable in dokuwiki\\TreeBuilder\\Node\\AbstractNode 26 * @param string|null $title The title as given in the link 28 public function __construct(string $id, ?string $title) argument 31 $this->title = $title; 57 return $this->title; 61 * @param string|null $title 63 public function setTitle(?string $title): void argument 65 $this->title = $title;
|
H A D | WikiStartpage.php | 16 * @param string|null $title The title as given in the link 19 public function __construct(string $id, ?string $title, string $originalNamespace) argument 22 parent::__construct($id, $title);
|
/dokuwiki/inc/parser/ |
H A D | renderer.php | 591 * @param string|array $title name for the link, array for media file 593 public function internallink($link, $title = null) argument 601 * @param string|array $title name for the link, array for media file 603 public function externallink($link, $title = null) argument 623 * @param string|array $title name for the link, array for media file 627 public function interwikilink($link, $title, $wikiName, $wikiUri) argument 635 * @param string|array $title name for the link, array for media file 637 public function filelink($link, $title = null) argument 645 * @param string|array $title name for the link, array for media file 647 public function windowssharelink($link, $title = null) argument [all …]
|
H A D | metadata.php | 603 * @param string $title descriptive text 612 $title = null, argument 619 if ($this->capture && $title) { 620 $this->doc .= '[' . $title . ']'; 630 * @param string $title descriptive text 639 $title = null, argument 646 if ($this->capture && $title) { 647 $this->doc .= '[' . $title . ']'; 702 * @param string|array|null $title either string title or media array 708 public function _getLinkTitle($title, $default, $id = null) argument [all …]
|
H A D | xhtml.php | 720 $title = $this->_xmlEntities($this->acronyms[$acronym]); 722 $this->doc .= '<abbr title="' . $title 853 $title = $ID . ' ↵'; 855 $doc = '<a href="#' . $hash . '" title="' . $title . '" class="wikilink1">'; 1152 $title = $address; 1162 $link['title'] = $title; 1176 * @param string $title descriptive text 1187 $title = null, argument 1204 $link = $this->_getMediaLinkConf($src, $title, $align, $width, $height, $cache, $render); 1261 * @param string $title descriptive text [all …]
|
/dokuwiki/_test/tests/inc/ |
H A D | pageutils_sectionid.test.php | 27 foreach($titles as $title){ 28 $newId = sectionID($title, $check); 29 …readyGeneratedIds, "id $newId has been generated twice. The 2nd time it was for the title $title");
|
/dokuwiki/vendor/openpsa/universalfeedcreator/lib/Creator/ |
H A D | OPMLCreator.php | 29 $feed .= " <title>".htmlspecialchars($this->title)."</title>\n"; 48 $title = htmlspecialchars(strip_tags(strtr($this->items[$i]->title, "\n\r", " "))); 49 $feed .= " title=\"".$title."\""; 50 $feed .= " text=\"".$title."\"";
|
H A D | HTMLCreator.php | 85 FeedCreator::iTrunc(htmlspecialchars($this->image->title), 100). 97 if ($this->title) { 99 FeedCreator::iTrunc(htmlspecialchars($this->title), 100)."</a></div>"; 116 if ($this->items[$i]->title) { 121 htmlspecialchars(strip_tags($this->items[$i]->title)), 128 … FeedCreator::iTrunc(htmlspecialchars(strip_tags($this->items[$i]->title)), 100).
|
H A D | GPXCreator.php | 31 $feed .= "<desc>".FeedCreator::iTrunc(htmlspecialchars($this->title), 100)."</desc> 39 <name>".substr(htmlspecialchars(strip_tags($this->items[$i]->title)), 0, 6)."</name> 40 <desc>".htmlspecialchars(strip_tags($this->items[$i]->title))."</desc>
|
H A D | JSONCreator.php | 17 $data['title'] = (string)$this->title; 37 $entry['title'] = strip_tags((string)$item->title);
|
H A D | PIECreator01.php | 28 … $feed .= " <title>".FeedCreator::iTrunc(htmlspecialchars($this->title), 100)."</title>\n"; 34 htmlspecialchars(strip_tags($this->items[$i]->title)),
|
H A D | KMLCreator.php | 59 $feed .= " <name>".FeedCreator::iTrunc(htmlspecialchars($this->title), 100)."</name> 72 … <name>".FeedCreator::iTrunc(htmlspecialchars(strip_tags($this->items[$i]->title)), 100)."</name>
|
H A D | PHPCreator.php | 26 …$feed .= " \$feedTitle='".addslashes(FeedCreator::iTrunc(htmlspecialchars($this->title), 100))."'… 36 FeedCreator::iTrunc(htmlspecialchars(strip_tags($this->items[$i]->title)), 100)
|
/dokuwiki/vendor/openpsa/universalfeedcreator/lib/Element/ |
H A D | FeedImage.php | 14 public $title, $url, $link;
|
H A D | FeedItem.php | 14 public $title, $description, $link;
|
/dokuwiki/lib/scripts/ |
H A D | linkwiz.js | 45 title: LANG.linkwiz, property 195 this.$entry.val(a.title); 196 if (a.title === '' || a.title.charAt(a.title.length - 1) === ':') { 215 insertLink(title) { argument 239 linkTitle = title; 269 createLinkSyntax(id, title) { argument 286 if (title) { 287 link += title;
|
/dokuwiki/inc/Extension/ |
H A D | PluginInterface.php | 135 * @param string $title 141 public function external_link($link, $title = '', $class = '', $target = '', $more = ''); argument
|
H A D | PluginTrait.php | 255 public function external_link($link, $title = '', $class = '', $target = '', $more = '') argument 260 if (!$title) $title = $link; 268 return "<a href='$link'$class$target$more>$title</a>";
|
/dokuwiki/lib/styles/ |
H A D | feed.css | 23 channel title, feed title { 43 item title, entry title {
|
/dokuwiki/conf/ |
H A D | local.php.dist | 12 //$conf['title'] = 'My Wiki'; //what to show in the title
|
/dokuwiki/inc/ |
H A D | ErrorHandler.php | 61 $title = hsc(get_class($e) . ': ' . $e->getMessage()); 71 <head><title>$title</title></head> 75 <h1 style="font-size: 120%">$title</h1>
|
H A D | pageutils.php | 243 * @param string $title The headline title 249 function sectionID($title, &$check) argument 251 $title = str_replace([':', '.'], '', cleanID($title)); 252 $new = ltrim($title, '0123456789_-'); 254 $title = 'section' . preg_replace('/[^0-9]+/', '', $title); //keep numbers from headline 256 $title = $new; 261 $candidateTitle = $title; 263 $candidateTitle = $title . ++$suffix; 268 return $title;
|
/dokuwiki/inc/Feed/ |
H A D | FeedCreator.php | 23 $this->feed->title = $this->options->get('title'); 90 $item->title = $proc->getTitle(); 92 $item->title .= ' - ' . $proc->getSummary(); 216 $this->feed->image->title = $conf['title'];
|