Lines Matching refs:in

15in PHP that use XML style files to store formatting data for in-text citations/footnotes and bibli…
17 Style files are stored in XML format and are available for download from the Bibliophile site at:
21 where the first number (in this case '1.0') is the version number of the OSBib classes the style is…
23 Please note. Although in-text/footnotes citation formatting is defined in the XML style files, thi…
49 …to choose their preferred style where the key from the array above is used in BIBFORMAT::loadStyle…
54 This is used internally in BIBFORMAT.php and currently just parses a single style definition string…
59 (If your database stores or access its records in a BibTeX style format, you should use STYLEMAPBIB…
60 …e/bibliographic management system and OSBib. There are plenty of comments in that file so read th…
62 …r1', 'creator2', 'creator3', 'creator4' or 'creator5'. For resource types in $this->types that yo…
64 A SQL query in WIKINDX to display each resource in a format suitable for OSBib processing returns t…
67in STYLEMAP.php. This is how the data from _your_ particular database is mapped to a format that …
74in UTF-8 format and will return its formatted data in UTF-8 format. If you need to encode or decod…
112 By default, $pathToOsbibClasses will be the same directory as BIBFORMAT.php is in.
115in UTF-8 format and will return its formatted data in UTF-8 format. If you need to encode or decod…
120 $bibformat->patterns -- A preg pattern (e.g. "/matchThis|matchThat/i") that in conjunction with $bi…
122in a form similar to BibTeX, you should set the constructor parameter $useBibtex to TRUE and set t…
128 Parses the XML style file into raw arrays (to be further processed in BIBFORMAT::getStyle() (see be…
130 $citation -- in-text citation styling (not currently used).
134 These last two are used in BIBFORMAT::getStyle().
148 $row is an associative array returned from your SQL query as described in the STYLEMAP.php section …
149 $type is the resource type which must be one of the ones listed in $this->types in STYLEMAP.php.
153 Internally within BIBFORMAT.php, data from the SQL query $row is formatted and stored in a $item as…
156 …ype of creator the resource has. (See BIBSTYLE.php for an example of how this is used in WIKINDX.)
159 …ssociative array of creator names. e.g. this array might be of the primary authors (in 'creator1'):
164 … 'creator4' or 'creator5'. This is mapped against the resource type array in STYLEMAP.php to dete…
172 … If your bibliographic system allows users to specify a groups of letters in the title that shoul…
176 …er to be a cardinal or an ordinal number. If your edition number is stored in the database as a ca…
190in BIBFORMAT.php. Use this to add elements of your resource to the $item array that do not requir…
194 Add all remaining items to the internal $item array in BIBFORMAT.php. Use this to add elements of …
205 The formatting in BIBFORMAT works on one resource at a time so you will want to call it via a loop …
207 …ing BIBFORMAT class instantiation. It's a general outline of what happens in BIBSTYLE.php as used…
230 If you _are_ using STYLEMAPBIBTEX for reasons described in the sections above, then the following i…
232 // $resourceArray must be an array of all the elements in the resource where the key names are vali…