Lines Matching refs:BIBFORMAT

37 Parse the XML style file into usable arrays.  Used within BIBFORMAT::loadStyle().  See BIBFORMAT.ph…
49 …ose their preferred style where the key from the array above is used in BIBFORMAT::loadStyle() (se…
54 This is used internally in BIBFORMAT.php and currently just parses a single style definition string…
71 include_once($pathToOsbibClasses . "BIBFORMAT.php");
74 BIBFORMAT expects its data to be in UTF-8 format and will return its formatted data in UTF-8 format…
107 BIBFORMAT.php
109 include_once("core/styles/BIBFORMAT.php");
110 $bibformat = new BIBFORMAT(STRING: $pathToOsbibClasses = FALSE [, BOOLEAN: $useBibtex = FALSE]);
112 By default, $pathToOsbibClasses will be the same directory as BIBFORMAT.php is in.
115 NB -- BIBFORMAT expects its data to be in UTF-8 format and will return its formatted data in UTF-8 …
118 PROPERTIES to be set after instantiating the BIBFORMAT class:
122 …efault, this path will be to a bibtexParse/ directory in the same directory as BIBFORMAT.php is in.
125 BIBFORMAT::loadStyle();
128 Parses the XML style file into raw arrays (to be further processed in BIBFORMAT::getStyle() (see be…
134 These last two are used in BIBFORMAT::getStyle().
136 BIBFORMAT::getStyle();
139 Transform the raw XML arrays from BIBFORMAT::loadStyle() into OSBib-usable arrays and perform some …
145 BIBFORMAT::preProcess();
153 Internally within BIBFORMAT.php, data from the SQL query $row is formatted and stored in a $item as…
155 BIBFORMAT::formatNames()
166 BIBFORMAT::formatTitle()
174 BIBFORMAT::formatEdition()
178 BIBFORMAT::formatPages()
181 BIBFORMAT::formatDate()
184 BIBFORMAT::formatRunningTime()
188 BIBFORMAT::addItem()
190 Add an item to the internal $item array in BIBFORMAT.php. Use this to add elements of your resourc…
192 BIBFORMAT::addAllOtherItems()
194 Add all remaining items to the internal $item array in BIBFORMAT.php. Use this to add elements of …
196 BIBFORMAT::map()
205 The formatting in BIBFORMAT works on one resource at a time so you will want to call it via a loop …
207 …e loop described above and _after_ setting various properties following BIBFORMAT class instantiat…
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
230 …e loop described above and _after_ setting various properties following BIBFORMAT class instantiat…
246 // In this case, BIBFORMAT::preProcess() adds all the resource elements automatically to the BIBFOR…