/** * Returns the specified local text in raw format * * @author Andreas Gohr <*****@*****.**> */ function rawLocale($id, $ext = 'txt') { return io_readFile(localeFN($id, $ext)); }
/** * Returns the specified local text in parsed format * * @author Andreas Gohr <*****@*****.**> */ function p_locale_xhtml($id) { //fetch parsed locale $html = p_cached_output(localeFN($id)); return $html; }
/** * Returns the specified local text in raw format * * @author Andreas Gohr <*****@*****.**> */ function rawLocale($id) { return io_readFile(localeFN($id)); }