コード例 #1
0
ファイル: common.php プロジェクト: nextghost/dokuwiki
/**
 * Returns the specified local text in raw format
 *
 * @author Andreas Gohr <*****@*****.**>
 */
function rawLocale($id, $ext = 'txt')
{
    return io_readFile(localeFN($id, $ext));
}
コード例 #2
0
ファイル: parserutils.php プロジェクト: nextghost/dokuwiki
/**
 * 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;
}
コード例 #3
0
ファイル: common.php プロジェクト: manishkhanchandani/mkgxy
/**
 * Returns the specified local text in raw format
 *
 * @author Andreas Gohr <*****@*****.**>
 */
function rawLocale($id)
{
    return io_readFile(localeFN($id));
}