Lines Matching refs:ret

219         $ret = true;
223 $ret = PEAR::raiseError('Unknown option '.$option);
225 return $ret;
389 $ret = array('bibtex' => $entry.'}');
406 $ret['entrykey'] = $matches[1];
452 $ret[$field] = $value;
457 $ret['cite'] = trim($arr[1]);
458 $ret['entrytype'] = strtolower(trim($arr[0]));
459 if ('@' == $ret['entrytype']{0}) {
460 $ret['entrytype'] = substr($ret['entrytype'], 1);
463 if (!$this->_checkAllowedEntryType($ret['entrytype'])) {
464 … $this->_generateWarning('WARNING_NOT_ALLOWED_ENTRY_TYPE', $ret['entrytype'], $entry.'}');
468 if (in_array('author', array_keys($ret)) && $this->_options['extractAuthors']) {
469 $ret['author'] = $this->_extractAuthors($ret['author']);
470 … $ret['niceauthor'] = join(', ', array_map(function ($a) { return $a['nice']; }, $ret['author']));
471 … $ret['sortauthor'] = join('', array_map(function ($a) { return $a['sort']; }, $ret['author']));
474 return $ret;
491 $ret = true;
508 $ret = false;
512 if ($ret) {
522 $ret = false;
531 $ret = true;
537 return $ret;
565 $ret = false;
598 $ret = true;
601 return $ret;
801 $ret = -1;
819 $ret = 1;
822 $ret = 0;
829 $ret = PEAR::raiseError('Could not determine case on word: '.(string)$word);
831 return $ret;
988 $ret = $this->authorstring;
989 $ret = str_replace("VON", $array['von'], $ret);
990 $ret = str_replace("LAST", $array['last'], $ret);
991 $ret = str_replace("JR", $array['jr'], $ret);
992 $ret = str_replace("FIRST", $array['first'], $ret);
993 return trim($ret);
1062 $ret = array();
1064 if (array_key_exists($entry['entrytype'], $ret)) {
1065 $ret[$entry['entrytype']]++;
1067 $ret[$entry['entrytype']] = 1;
1070 return $ret;
1089 $ret = "{\\rtf\n";
1122 $ret .= $line;
1127 $ret .= '}';
1128 return $ret;
1146 $ret = "<p>\n";
1179 $ret .= $line;
1184 $ret .= "</p>\n";
1185 return $ret;