Home
last modified time | relevance | path

Searched refs:prefix (Results 451 – 458 of 458) sorted by last modified time

1...<<111213141516171819

/plugin/bibtex/OSBib/format/
H A DBIBFORMAT.php741 $prefix = $creator['prefix'] ? trim(stripslashes($creator['prefix'])) . ' ' : '';
745 $prefix .
H A DREADME.txt161 …[0] => array(['surname'] => 'Grimshaw', ['firstname'] => Mark, ['initials'] => 'N', ['prefix'] => …
162 [1] => array(['surname'] => 'Witt', ['firstname'] => Jan, ['initials'] => , ['prefix'] => 'de')
/plugin/bibtex/OSBib/format/bibtexParse/
H A DPARSECREATORS.php42 $appellation = $prefix = $surname = $firstname = $initials = '';
43 $this->prefix = array();
66 list($surname, $prefix) = $this->grabSurname(array_shift($author));
74 list($surname, $prefix) = $this->grabSurname(array_shift($author));
78 if(!empty($this->prefix))
79 $prefix = join(' ', $this->prefix);
96 $this->prefix[] = $value;
121 $prefix[] = $value;
130 if(isset($prefix))
132 $prefix = join(" ", $prefix);
[all …]
/plugin/googlesearch/
H A Dnusoap.php752 * @param string $prefix The prefix
758 return $this->namespaces[$prefix];
1163 if($prefix = $this->getPrefix($name)){
1167 $prefix = '';
1455 $prefix = '';
4387 $namespace = isset($this->namespaces[$prefix]) ? $this->namespaces[$prefix] : '';
6065 if(isset($prefix)){
6073 $this->responseHeaders .= "<" . (isset($prefix) ? $prefix . ':' : '') . "$name$attstr>";
6076 $this->document .= "<" . (isset($prefix) ? $prefix . ':' : '') . "$name$attstr>";
6164 $this->responseHeaders .= "</" . (isset($prefix) ? $prefix . ':' : '') . "$name>";
[all …]
/plugin/txtconf/
H A Dconfig0.class.php193 function _flatten($conf,$prefix='') { argument
199 $out[$prefix.$key] = $value;
203 $tmp = $this->_flatten($value,$prefix.$key.CM_KEYMARKER);
/plugin/math/
H A Dsyntax.php75 var $prefix = 'mathmulti_'; variable in syntax_plugin_mathmulti
104 $this->msg_disable = $this->getLang($this->prefix.'disable');
117 …'name' => 'MathMulti Plugin'.(!$this->enable ? ' ('.$this->getLang($this->prefix.'disable').')' …
118 'desc' => $this->getLang($this->prefix.'info').
119 (!$this->enable ? "\n(".$this->getLang($this->prefix.'disable').")" : ''),
/plugin/bibtex/OSBib/create/
H A DPREVIEWSTYLE.php249 'prefix' => '',
255 'prefix' => '',
261 'prefix' => '',
267 'prefix' => '',
275 'prefix' => '',
281 'prefix' => 'de',
289 'prefix' => '',
297 'prefix' => '',
305 'prefix' => '',
313 'prefix' => '',
[all …]
H A DSESSION.php70 function getArray($prefix) argument
72 $prefix .= '_';
75 if(preg_match("/^$prefix(.*)/", $key, $matches))
83 function writeArray($row, $prefix = FALSE) argument
89 if($prefix)
91 if(!$this->setVar($prefix . '_' . $key, $value))
103 function clearArray($prefix) argument
105 $prefix .= '_';
108 if(preg_match("/^$prefix/", $key))

1...<<111213141516171819