コード例 #1
0
ファイル: admin.tabs.php プロジェクト: brucewu16899/1.6.x
function perso_page($tab)
{
    $uid = $_SESSION["uid"];
    $page = CurrentPageName();
    $ini = new Bs_IniHandler("ressources/profiles/{$uid}.tabs");
    $cache_tab_file = "ressources/profiles/{$uid}.{$tab}";
    if (!is_file($cache_tab_file)) {
        BuildCacheTab($tab);
    }
    header("location: {$page}?fill-tab={$tab}");
    return;
}
コード例 #2
0
ファイル: users.tabs.php プロジェクト: brucewu16899/artica
function perso_page($tab)
{
    $uid = $_GET["uid"];
    return BuildCacheTab($tab);
}