Lines Matching defs:title

54      *                       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'] = $this->_xmlEntities($url);
1070 $link['title'] = $this->_xmlEntities($link['url']);
1107 $link['title'] = $this->_xmlEntities($url);
1151 $title = $address;
1161 $link['title'] = $title;
1175 * @param string $title descriptive text
1186 $title = null,
1203 $link = $this->_getMediaLinkConf($src, $title, $align, $width, $height, $cache, $render);
1232 if ($exists) $link['title'] .= ' (' . filesize_h(filesize(mediaFN($src))) . ')';
1260 * @param string $title descriptive text
1271 $title = null,
1283 if ($src == '' && empty($title)) {
1285 $title = $reference;
1295 $link = $this->_getMediaLinkConf($src, $title, $align, $width, $height, $cache, $render);
1371 $title = html_entity_decode($item->get_title(), ENT_QUOTES, 'UTF-8');
1375 $this->externallink($item->get_permalink(), $title);
1635 $link['title'] = str_replace('&amp;amp;', '&amp;', $link['title']);
1637 // be sure there are no bad chars in url or title
1640 $link['title'] = strtr($link['title'], ['>' => '&gt;', '<' => '&lt;', '"' => '&quot;']);
1647 if (!empty($link['title'])) $ret .= ' title="' . $link['title'] . '"';
1662 * @param string $title descriptive text
1673 $title = null,
1685 // first get the $title
1686 if (!is_null($title)) {
1687 $title = $this->_xmlEntities($title);
1694 $title = $this->_xmlEntities($cap);
1699 // return the title of the picture
1700 if ($title === null || $title === "") {
1702 $title = $this->_xmlEntities(PhpString::basename(noNS($src)));
1704 return $title;
1719 if ($title) {
1720 $ret .= ' title="' . $title . '"';
1721 $ret .= ' alt="' . $title . '"';
1736 // first get the $title
1737 $title ??= false;
1740 // return the title of the file (just the sourcename if there is no title)
1741 return $this->_xmlEntities($title ?: PhpString::basename(noNS($src)));
1746 if ($title) {
1747 $att['title'] = $title;
1761 // return the title of the flash
1762 if (!$title) {
1764 $title = PhpString::basename(noNS($src));
1766 return $this->_xmlEntities($title);
1780 $this->_xmlEntities($title)
1782 } elseif ($title) {
1783 // well at least we have a title to display
1784 $ret .= $this->_xmlEntities($title);
1806 * Construct a title and handle images in titles
1808 * @param string|array $title either string title or media array
1809 * @param string $default default title if nothing else is found
1811 * @param null|string $id linked page id (used to extract title from first heading)
1813 * @return string HTML of the title, might be full image tag or just escaped text
1816 public function _getLinkTitle($title, $default, &$isImage, $id = null, $linktype = 'content')
1819 if (is_array($title)) {
1821 return $this->_imageTitle($title);
1822 } elseif (is_null($title) || trim($title) == '') {
1831 return $this->_xmlEntities($title);
1855 $img['title'],
1869 * @param string $title descriptive text
1878 public function _getMediaLinkConf($src, $title, $align, $width, $height, $cache, $render)
1890 $link['title'] = $this->_xmlEntities($src);
1891 $link['name'] = $this->_media($src, $title, $align, $width, $height, $cache, $render);
1953 $title = empty($atts['title'])
1955 : $atts['title'];
1961 $title,
2023 $title = $atts['title'] ?: $this->_xmlEntities(PhpString::basename(noNS($file)));
2029 $title,