Home
last modified time | relevance | path

Searched refs:array (Results 751 – 765 of 765) sorted by last modified time

1...<<31

/plugin/bibtex/OSBib/format/
H A DBIBFORMAT.php141 foreach($common as $array)
143 if(array_key_exists('_NAME', $array) && array_key_exists('_DATA', $array))
144 $this->style[$array['_NAME']] = $array['_DATA'];
161 foreach($styleDefinition as $array)
163 if(array_key_exists('_NAME', $array) && array_key_exists('_DATA', $array)
166 if($array['_NAME'] == 'fallbackstyle')
171 if($array['_NAME'] == 'ultimate')
207 $this->$type = $array;
1023 if(sizeof($array) == 1)
1025 $newString .= $this->utf8->utf8_strtolower($this->utf8->encodeUtf8($array[1])) . $array[2];
[all …]
H A DPARSESTYLE.php38 preg_match("/(.*)(?<!`|[a-zA-Z])($search)(?!`|[a-zA-Z])(.*)/", $subject, $array);
39 if(empty($array))
54 $pre = $array[1];
55 $fieldName = $array[2];
56 $post = $array[3];
H A DREADME.txt42 This scans the style file directory and returns an alphabetically sorted (on the key) array of avai…
148 $row is an associative array returned from your SQL query as described in the STYLEMAP.php section …
159 $creators -- Multi-associative array of creator names. e.g. this array might be of the primary auth…
160 array(
161 …[0] => array(['surname'] => 'Grimshaw', ['firstname'] => Mark, ['initials'] => 'N', ['prefix'] => …
162 [1] => array(['surname'] => 'Witt', ['firstname'] => Jan, ['initials'] => , ['prefix'] => 'de')
194 …ining items to the internal $item array in BIBFORMAT.php. Use this to add elements of your resour…
214 // Add various resource elements to BIBFORMAT::item array that require special processing and forma…
223 // Add all the other elements of the resource to BIBFORMAT::item array
233 $resourceArray = array(
[all …]
/plugin/bibtex/OSBib/format/bibtexParse/
H A DPARSECREATORS.php91 $array = split(" ", $remainder);
92 foreach($array as $value)
H A DPARSEMONTH.php64 preg_match("/([0-9]+).*([0-9]+)|([0-9]+)/", $dayField, $array);
65 if(array_key_exists(3, $array))
68 $this->startDay = $array[3];
70 $this->endDay = $array[3];
74 if(array_key_exists(1, $array))
75 $this->startDay = $array[1];
76 if(array_key_exists(2, $array))
77 $this->endDay = $array[2];
H A DPARSEPAGE.php37 if(preg_match("/(\d+|[ivx]+)/i", $item, $array))
38 return array($array[1], FALSE);
46 $array = preg_split("/--|-/", $item);
47 if(sizeof($array) > 1)
49 if(is_numeric(trim($array[0])))
50 $start = trim($array[0]);
52 $start = strtolower(trim($array[0]));
53 if(is_numeric(trim($array[1])))
54 $end = trim($array[1]);
56 $end = strtolower(trim($array[1]));
H A DPARSEENTRIES.php210 $array = preg_split("/,\s*([-_.:,a-zA-Z0-9]+)\s*={1}\s*/U", $seg, PREG_SPLIT_DELIM_CAPTURE);
212 if(!array_key_exists(1, $array))
213 return array($array[0], FALSE);
214 return array($array[0], $array[1]);
H A DREADME23 If $parse->fieldExtract == TRUE (default), the $entries array using the supplied example bib.bib fi…
52 In other words, an array of separate BibTeX entries each one an array comprising the fields, entry …
54 If $parse->fieldExtract == FALSE, the $entries array using the supplied example bib.bib file will b…
61 In other words, an array of separate BibTeX entries with no further processing. @strings will be si…
73 $more_macro = array("RMP" => "Rev., Mod. Phys.", "LNCS" => "Lecture Notes in Computer Science");
82 …he component writers returning a multidimensional array consisting of writer arrays comprised of
/plugin/gallery2/dwgallery/
H A Ddwgallery.php128 $array = gallery_readdir($gallery);
129 $gallery['image'] = $array[1];
130 $gallery['thumbnail'] = $array[2];
131 $gallery['imagename'] = $array[3];
132 $gallery['thumbname'] = $array[4];
444 $array[1] = $image;
445 $array[2] = $thumbnail;
446 $array[3] = $imagename;
447 $array[4] = $thumbname;
449 return $array;
/plugin/bibtex/OSBib/
H A DPARSEXML.php61 foreach($this->entries[0]['_ELEMENTS'][1]['_ELEMENTS'] as $array)
62 $types[] = $array;
70 foreach($this->entries[0]['_ELEMENTS'][2]['_ELEMENTS'] as $array)
71 $types[] = $array;
H A DLOADSTYLE.php48 $array[strtoupper($dir)] = $matches[1];
53 if(!isset($array))
54 return $array = array();
58 ksort($array);
59 return $array;
/plugin/bibtex/OSBib/create/
H A DADMINSTYLE.php145 if(array_key_exists('_NAME', $array) && array_key_exists('_DATA', $array))
149 foreach($common as $array)
151 if(array_key_exists('_NAME', $array) && array_key_exists('_DATA', $array))
189 if(array_key_exists('_NAME', $array) && array_key_exists('_DATA', $array)
927 if(empty($array))
942 $pre = $array[1];
943 $fieldName = $array[2];
944 $post = $array[3];
1369 $array[] = "cite_ibid";
1370 $array[] = "cite_idem";
[all …]
H A DFORM.php117 function selectFBox($label, $name, $array, $size = 3, $override = FALSE) argument
125 $value = array_shift($array);
128 foreach($array as $value)
148 foreach($array as $value)
169 function selectFBoxValue($label, $name, $array, $size = 3, $override = FALSE) argument
178 $formMisc->reduceLongText(current($array), $override) . "</option>\n";
180 foreach($array as $key => $value)
206 foreach($array as $key => $value)
232 $formMisc->reduceLongText(current($array), $override) . "</option>\n";
234 foreach($array as $key => $value)
[all …]
H A DSESSION.php76 $array[$matches[1]] = $value;
78 if(isset($array))
79 return $array;
/plugin/highlightjs/highlight/
H A Dhighlight.pack.js1array:1,label:1,packed:1,"end.":1,index:1,"while":1,"const":1,raise:1,"for":1,to:1,implementation:… property in hljs.LANGUAGES.vbscript.dM.k.built_in

1...<<31