Lines Matching refs:text

279         $text = $data->get('note-text', 'title');
281 if (empty($text)) {
282 $text = $data->getLongest();
286 $text = '[[' . $url . '|' . $text . ']]';
289 return $text;
317 $html .= '<span id="' . $note->getAnchorName() . ':text">' . DOKU_LF;
346 $baseStyle = $this->getInlineReferenceStyle($reference, 'reference-base', 'text');
417 $xmlOdt .= '<text:note text:id="refnote' . $refId . '" text:note-class="footnote">';
418 $xmlOdt .= '<text:note-citation text:label="' . $refId . '">' . $refId . '</text:note-citation>';
419 $xmlOdt .= '<text:note-body>';
420 $xmlOdt .= '<text:p>' . $note->getText();
421 $xmlOdt .= '</text:p>';
422 $xmlOdt .= '</text:note-body>';
423 $xmlOdt .= '</text:note>';
427 $xmlOdt = '<text:note-ref text:note-class="footnote" text:ref-name="refnote' . $noteId . '">';
429 $xmlOdt .= '</text:note-ref>';
629 switch ($this->getStyle('note-text-align')) {
778 'text' => array('', '')
1000 $text = $title . ' ' . $subtitle;
1002 // $authors? $text, $publication?
1004 $text .= !empty($publication) ? ',' : '.';
1010 $text = $this->renderBook($data, $title);
1013 // $authors? $text $publication?
1016 $text = $authors . ' ' . $text;
1020 $text .= ' ' . $publication;
1023 return $text;
1030 $text = $data->get('title') . '.';
1033 $text = '[[' . $url . '|' . $text . ']]';
1036 return $text;
1043 $text = $data->get('authors', 'author');
1045 if (!empty($text)) {
1047 $text .= ', ' . $published;
1050 $text .= '.';
1053 return $text;
1060 $text = $data->get('published');
1062 if (empty($text)) {
1063 if ($text = $data->get('year')) {
1065 $text = $month . ' ' . $text;
1070 return $text;
1110 $text = implode(', ', $part);
1112 if (!empty($text)) {
1113 $text = rtrim($text, '.') . '.';
1119 if (!empty($text)) {
1120 $text .= ' ' . $accessed;
1123 $text = $accessed;
1127 return $text;
1134 $text = '';
1137 if ($text = $data->get($k)) {
1138 if (preg_match("/^[0-9]/", $text)) {
1140 $text = refnotes_localization::getInstance()->getLang($abbr_key) . $text;
1146 return $text;
1153 $text = '//' . $data->get('journal') . '//';
1156 $text .= ', ' . $volume;
1159 return $text;
1166 $text = '//' . $title . '//';
1169 $text = $chapter . '. ' . refnotes_localization::getInstance()->getLang('txt_in_cap') . ' ' . $text;
1173 $text .= ' ' . $edition . '.';
1176 return $text;