Lines Matching refs:array

42 This scans the style file directory and returns an alphabetically sorted (on the key) array of avai…
49 …TML FORM selectbox to choose their preferred style where the key from the array above is used in B…
54 …ular resource type (book, web article etc.) from a style XML file into an array to be used by OSBi…
62array changing ONLY the key of each element. However, do NOT edit any key (or its value) that is …
64 …n a format suitable for OSBib processing returns the following associative array for each resource:
67array match the key names of the resource type arrays in STYLEMAP.php. This is how the data from …
148 $row is an associative array returned from your SQL query as described in the STYLEMAP.php section …
153 …ta from the SQL query $row is formatted and stored in a $item associative array. The following me…
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')
164 …or3', 'creator4' or 'creator5'. This is mapped against the resource type array in STYLEMAP.php to…
190 Add an item to the internal $item array in BIBFORMAT.php. Use this to add elements of your resourc…
194 …ining items to the internal $item array in BIBFORMAT.php. Use this to add elements of your resour…
198 After you have added resource elements to the $item array using the methods above, calling map() wi…
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
232 // $resourceArray must be an array of all the elements in the resource where the key names are vali…
233 $resourceArray = array(
246 …IBFORMAT::preProcess() adds all the resource elements automatically to the BIBFORMAT::item array...