Home
last modified time | relevance | path

Searched +full:title -(+path:inc +path:lang) -(+path:lib +path:plugins +path:lang) -(+path:lib +path:tpl +path:dokuwiki +path:lang) (Results 26 – 50 of 132) sorted by relevance

123456

/dokuwiki/vendor/openpsa/universalfeedcreator/lib/Creator/
H A DRSSCreator091.php59 $feed .= " <title>".FeedCreator::iTrunc(htmlspecialchars((string) $this->title), 100)."</title>\n";
72 $feed .= " <title>".FeedCreator::iTrunc(htmlspecialchars($this->image->title), 100)."</title>\n";
132 $feed .= " <title>".FeedCreator::iTrunc(
133 htmlspecialchars(strip_tags((string) $this->items[$i]->title)),
135 )."</title>\n";
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 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 DKMLCreator.php59 $feed .= " <name>".FeedCreator::iTrunc(htmlspecialchars($this->title), 100)."</name>
72 <name>".FeedCreator::iTrunc(htmlspecialchars(strip_tags($this->items[$i]->title)), 100)."</name>
/dokuwiki/lib/plugins/styling/
H A Dpopup.php23 <title><?php echo $plugin->getLang('menu') ?></title>
/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/
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 DManifest.php18 $manifest['name'] = $conf['title'];
22 $manifest['short_name'] = $conf['title'];
H A DAjax.php65 foreach ($data as $id => $title) {
67 $name = $title;
381 foreach ($pages as $pid => $title) {
387 $data[] = ['id' => $pid, 'title' => $title, 'type' => 'f'];
439 echo '<a href="' . $link . '" title="' . hsc($item['id']) . '" class="wikilink1">' . $name . '</a>';
441 if (!blank($item['title'])) {
442 echo '<span>' . hsc($item['title']) . '</span>';
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/tpl/dokuwiki/
H A Ddetail.php18 <title>
20 [<?php echo strip_tags($conf['title'])?>]
21 </title>
52 <h1><?php echo nl2br(hsc(tpl_img_getTag('simple.title'))); ?></h1>
H A Dtpl_header.php30 // display logo and wiki title in a link to the home page
34 '<span>' . $conf['title'] . '</span>',
35 'accesskey="h" title="' . tpl_getLang('home') . ' [h]"'
H A Dmain.php20 <title><?php tpl_pagetitle() ?> [<?php echo strip_tags($conf['title']) ?>]</title>
/dokuwiki/vendor/openpsa/universalfeedcreator/lib/Element/
H A DFeedImage.php14 public $title, $url, $link;
/dokuwiki/vendor/openpsa/universalfeedcreator/
H A DREADME.md16 $rss->title = "PHP news";
27 $image->title = "dailyphp.net logo";
43 $item->title = $data->title;
/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...]
/dokuwiki/lib/tpl/
H A Dindex.php22 <title>Template Replacements</title>
/dokuwiki/inc/Extension/
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/
H A Dfeed.php
H A Dinstall.php50 <title><?php echo $lang['i_installer'] ?></title>
197 <label for="title"><?php echo $lang['i_wikiname'] ?>
198 <input type="text" name="d[title]" id="title" value="<?php echo $d['title'] ?>" style="width: 20em;"/>
302 'title' => '',
332 if (empty($d['title'])) {
401 $output .= '$conf[\'title\'] = \'' . addslashes($d['title'])
[all...]
/dokuwiki/inc/parser/
H A Dhandler.php329 // get level and title
330 $title = trim($match);
331 $level = 7 - strspn($title, '=');
333 $title = trim($title, '=');
334 $title = trim($title);
338 $this->addCall('header', [$title, $level, $pos], $pos);
831 // Split title from URL
836 // If the title i
[all...]
/dokuwiki/lib/plugins/config/core/Setting/
H A DSettingUndefined.php37 $label = '<span title="$meta[\'' . $undefined_setting_key . '\']">$' .
/dokuwiki/inc/Action/
H A DExport.php64 $pre .= ' <title>' . $ID . '</title>' . DOKU_LF;
/dokuwiki/lib/plugins/extension/helper/
H A Dlist.php162 'title' => $url,
207 $html = '<a href="' . $url . '" class="author" title="' . $this->getLang('author_hint') . '" >' .
237 $title = sprintf($this->getLang('screenshot'), hsc($extension->getDisplayName()));
239 '<img alt="' . $title . '" width="120" height="70" src="' . hsc($thumb) . '" />' .
275 $html .= '<div class="popularity" title="' . $popularityText . '">' .
297 '" class="info ' . $class . '" title="' . $this->getLang('btn_info') .
329 'title' => $bugtrackerURL,
631 $title = '';
634 $title = 'title
[all...]

123456