Exemplo n.º 1
0
/**
 * Returns the specified local text in raw format
 *
 * @author Andreas Gohr <*****@*****.**>
 */
function rawLocale($id, $ext = 'txt')
{
    return io_readFile(localeFN($id, $ext));
}
Exemplo n.º 2
0
/**
 * 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;
}
Exemplo n.º 3
0
/**
 * Returns the specified local text in raw format
 *
 * @author Andreas Gohr <*****@*****.**>
 */
function rawLocale($id)
{
    return io_readFile(localeFN($id));
}