Lines Matching refs:resource

54 …currently just parses a single style definition string for a particular resource type (book, web a…
62resource type's array changing ONLY the key of each element. However, do NOT edit any key (or its…
64 …KINDX to display each resource in a format suitable for OSBib processing returns the following ass…
67resource type arrays in STYLEMAP.php. This is how the data from _your_ particular database is map…
129 $info -- general information about the resource including description, language, version etc.
132 $styleTypes -- bibliographic styling for each resource type supported by that particular style.
149 $type is the resource type which must be one of the ones listed in $this->types in STYLEMAP.php.
151 …uested bibliographic style does not provide a definition for a specific resource type. It also ha…
156 This method should be called for each type of creator the resource has. (See BIBSTYLE.php for an e…
164 …or2', 'creator3', 'creator4' or 'creator5'. This is mapped against the resource type array in STY…
167 Format the title of the resource.
170 $title -- The title of the resource.
190resource to the $item array that do not require special formatting with the methods above. If it'…
194 …nternal $item array in BIBFORMAT.php. Use this to add elements of your resource to the $item arra…
198 After you have added resource elements to the $item array using the methods above, calling map() wi…
205 The formatting in BIBFORMAT works on one resource at a time so you will want to call it via a loop …
209 // Get the resource type ('book', 'journal_article', 'artwork' etc.)
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
225 // Finally, get the formatted resource string ready for printing to the web browser or exporting to…
232 // $resourceArray must be an array of all the elements in the resource where the key names are vali…
244 // Get the resource type ('book', 'article', 'inbook' etc.)
246 // In this case, BIBFORMAT::preProcess() adds all the resource elements automatically to the BIBFOR…
248 // Finally, get the formatted resource string ready for printing to the web browser or exporting to…