| 1 | <?php  | 
            ||
| 20 | class StyleSheet  | 
            ||
| 21 | { | 
            ||
| 22 | |||
| 23 | /**  | 
            ||
| 24 | * Loads xml formatted CSL stylesheet of a given stylesheet name, e.g. "american-physiological-society" for  | 
            ||
| 25 | * apa style.  | 
            ||
| 26 | *  | 
            ||
| 27 | * See in styles folder (which is included as git submodule) for all available style sheets  | 
            ||
| 28 | *  | 
            ||
| 29 | * @param string $styleName e.g. "american-physiological-society" for apa  | 
            ||
| 30 | * @return string  | 
            ||
| 31 | */  | 
            ||
| 32 | public static function loadStyleSheet($styleName)  | 
            ||
| 37 | |||
| 38 | /**  | 
            ||
| 39 | * Loads xml formatted locales of given language key  | 
            ||
| 40 | *  | 
            ||
| 41 | * @param string $langKey e.g. "en-US", or "de-CH"  | 
            ||
| 42 | * @return string  | 
            ||
| 43 | */  | 
            ||
| 44 | public static function loadLocales($langKey)  | 
            ||
| 49 | }  |