Home
last modified time | relevance | path

Searched refs:title (Results 1 – 25 of 46) sorted by relevance

12

/dokuwiki/inc/parser/
H A Drenderer.php591 * @param string|array $title name for the link, array for media file
593 public function internallink($link, $title = null)
601 * @param string|array $title name for the link, array for media file
603 public function externallink($link, $title = null)
623 * @param string|array $title name for the link, array for media file
627 public function interwikilink($link, $title, $wikiName, $wikiUri)
635 * @param string|array $title name for the link, array for media file
637 public function filelink($link, $title = null)
645 * @param string|array $title name for the link, array for media file
647 public function windowssharelink($link, $title
531 internallink($link, $title = null) global() argument
540 externallink($link, $title = null) global() argument
562 interwikilink($link, $title, $wikiName, $wikiUri) global() argument
571 filelink($link, $title = null) global() argument
580 windowssharelink($link, $title = null) global() argument
605 internalmedia($src, $title = null, $align = null, $width = null, $height = null, $cache = null, $linking = null) global() argument
620 externalmedia($src, $title = null, $align = null, $width = null, $height = null, $cache = null, $linking = null) global() argument
634 internalmedialink($src, $title = null, $align = null, $width = null, $height = null, $cache = null) global() argument
648 externalmedialink($src, $title = null, $align = null, $width = null, $height = null, $cache = null) global() argument
762 _headerToLink($title, $create = false) global() argument
[all...]
H A Dxhtml.php54 * Key 'name': the section name/title
678 ) . '" title="' . $lang['download'] . '" class="' . $class . '">';
719 $title = $this->_xmlEntities($this->acronyms[$acronym]);
721 $this->doc .= '<abbr title="' . $title
852 $title = $ID . ' ↵';
854 $doc = '<a href="#' . $hash . '" title="' . $title . '" class="wikilink1">';
936 $link['title'] = $id;
1008 $link['title']
1118 internalmedia($src, $title = null, $align = null, $width = null, $height = null, $cache = null, $linking = null, $return = false) global() argument
1191 externalmedia($src, $title = null, $align = null, $width = null, $height = null, $cache = null, $linking = null, $return = false) global() argument
1569 _media($src, $title = null, $align = null, $width = null, $height = null, $cache = null, $render = true) global() argument
1704 _getLinkTitle($title, $default, & $isImage, $id = null, $linktype = 'content') global() argument
1764 _getMediaLinkConf($src, $title, $align, $width, $height, $cache, $render) global() argument
[all...]
H A Dmetadata.php151 'title' => $text,
167 if (!isset($this->meta['title'])) {
168 $this->meta['title'] = $text;
494 // add link title to summary
601 * @param string $title descriptive text
610 $title = null,
617 if ($this->capture && $title) {
618 $this->doc .= '[' . $title . ']';
628 * @param string $title descriptive text
637 $title
603 internalmedia($src, $title = null, $align = null, $width = null, $height = null, $cache = null, $linking = null) global() argument
624 externalmedia($src, $title = null, $align = null, $width = null, $height = null, $cache = null, $linking = null) global() argument
689 _getLinkTitle($title, $default, $id = null) global() argument
[all...]
/dokuwiki/vendor/openpsa/universalfeedcreator/lib/Creator/
H A DOPMLCreator.php29 $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 DHTMLCreator.php85 FeedCreator::iTrunc(htmlspecialchars($this->image->title), 100).
97 if ($this->title) {
98 $feedArray[] = "<div class='".$this->stylePrefix."title'><a href='".$this->link."' ".$targetInsert." class='".$this->stylePrefix."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 DGPXCreator.php31 $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 DKMLCreator.php59 $feed .= " <name>".FeedCreator::iTrunc(htmlspecialchars($this->title), 100)."</name>
72 <name>".FeedCreator::iTrunc(htmlspecialchars(strip_tags($this->items[$i]->title)), 100)."</name>
H A DPIECreator01.php28 $feed .= " <title>".FeedCreator::iTrunc(htmlspecialchars($this->title), 100)."</title>\n";
33 $feed .= " <title>".FeedCreator::iTrunc(
34 htmlspecialchars(strip_tags($this->items[$i]->title)),
36 )."</title>\n";
H A DPHPCreator.php26 $feed .= " \$feedTitle='".addslashes(FeedCreator::iTrunc(htmlspecialchars($this->title), 100))."';\n";
35 $feed .= " \$feedItem[$i]->title='".addslashes(
36 FeedCreator::iTrunc(htmlspecialchars(strip_tags($this->items[$i]->title)), 100)
H A DAtomCreator10.php44 $feed .= " <title>".htmlspecialchars((string) $this->title)."</title>\n";
73 $feed .= " <title>".htmlspecialchars(strip_tags((string) $this->items[$i]->title))."</title>\n";
149 if ($this->items[$i]->enclosure->title != "") {
150 $feed .= " title=\"".$this->items[$i]->enclosure->title."\" ";
H A DRSSCreator10.php34 $feed .= " <title>".htmlspecialchars((string) $this->title)."</title>\n";
52 $feed .= " <title>".$this->image->title."</title>\n";
79 $feed .= " <title>".htmlspecialchars(
80 strip_tags(strtr((string) $this->items[$i]->title, "\n\r", " "))
81 )."</title>\n";
H A DMBOXCreator.php73 $from = $this->title;
86 $feed .= "Subject: ".MBOXCreator::qp_enc(FeedCreator::iTrunc($this->items[$i]->title, 100))."\n";
H A DAtomCreator03.php44 $feed .= " <title>".htmlspecialchars($this->title)."</title>\n";
62 $feed .= " <title>".htmlspecialchars(strip_tags($this->items[$i]->title))."</title>\n";
/dokuwiki/vendor/openpsa/universalfeedcreator/lib/Element/
H A DFeedImage.php14 public $title, $url, $link;
H A DFeedItem.php14 public $title, $description, $link;
/dokuwiki/inc/Extension/
H A DPluginInterface.php135 * @param string $title
141 public function external_link($link, $title = '', $class = '', $target = '', $more = ''); argument
H A DPluginTrait.php249 return "<a href='mailto:$email' $class title='$email' $more>$name</a>";
255 public function external_link($link, $title = '', $class = '', $target = '', $more = '')
260 if (!$title) $title = $link;
268 return "<a href='$link'$class$target$more>$title</a>";
231 external_link($link, $title = '', $class = '', $target = '', $more = '') global() argument
/dokuwiki/lib/styles/
H A Dfeed.css23 channel title, feed title {
43 item title, entry title {
/dokuwiki/conf/
H A Dlocal.php.dist12 //$conf['title'] = 'My Wiki'; //what to show in the title
/dokuwiki/inc/
H A DErrorHandler.php61 $title = hsc(get_class($e) . ': ' . $e->getMessage());
71 <head><title>$title</title></head>
75 <h1 style="font-size: 120%">$title</h1>
H A Dpageutils.php241 * Creates a XHTML valid linkid from a given headline title
243 * @param string $title The headline title
245 * @return string the title argument
249 function sectionID($title, &$check)
251 $title = str_replace([':', '.'], '', cleanID($title));
252 $new = ltrim($title, '0123456789_-');
254 $title = 'section' . preg_replace('/[^0-9]+/', '', $title); //kee
[all...]
/dokuwiki/lib/scripts/
H A Dlinkwiz.js31 title: LANG.linkwiz,
192 dw_linkwiz.$entry.val(a.title);
193 if(a.title == '' || a.title.substr(a.title.length-1) == ':'){
207 * When no selection is available the given title will be used
208 * as link title instead
210 insertLink: function(title){ argument
231 stxt=title;
H A Dedit.js15 * @param {string} label title of button, show on mouseover
16 * @param {string} key hint in title of button for access key
33 $btn.attr('title', label).attr('aria-controls', 'wiki__text');
35 $btn.attr('title', label + ' ['+key.toUpperCase()+']')
84 function $makebutton(title) { argument
86 .addClass('pickerbutton').attr('title', title)
88 .on('click', bind(pickerInsert, title, edid))
/dokuwiki/inc/Menu/Item/
H A DAbstractItem.php47 /** @var string the tooltip title, defaults to $label */
48 protected $title = ''; variable in dokuwiki\\Menu\\Item\\AbstractItem
95 * Return this item's title
97 * This title should be used to display a tooltip (using the HTML title attribute). If
98 * a title property was not explicitly set, the label will be returned.
104 if ($this->title === '') return $this->getLabel();
105 return $this->title;
137 $attr = ['href' => $this->getLink(), 'title' => $this->getTitle()];
141 $attr['title']
[all...]
/dokuwiki/vendor/simplepie/simplepie/src/
H A DParser.php309 if ((end($this->namespace) === \SimplePie\SimplePie::NAMESPACE_ATOM_03 && in_array(end($this->element), ['title', 'tagline', 'copyright', 'info', 'summary', 'content']) && isset($attribs['']['mode']) && $attribs['']['mode'] === 'xml')
310 || (end($this->namespace) === \SimplePie\SimplePie::NAMESPACE_ATOM_10 && in_array(end($this->element), ['rights', 'subtitle', 'summary', 'info', 'title', 'content']) && isset($attribs['']['type']) && $attribs['']['type'] === 'xhtml')
311 || (end($this->namespace) === \SimplePie\SimplePie::NAMESPACE_RSS_20 && in_array(end($this->element), ['title']))
312 || (end($this->namespace) === \SimplePie\SimplePie::NAMESPACE_RSS_090 && in_array(end($this->element), ['title']))
313 || (end($this->namespace) === \SimplePie\SimplePie::NAMESPACE_RSS_10 && in_array(end($this->element), ['title']))) {
442 // Also set the feed title and store author from the h-feed if available.
456 $title = '';
473 $title = $entry['properties']['name'][0];
474 if (isset($title['value'])) {
475 $title
[all...]

12