當前位置: 首頁>>代碼示例>>PHP>>正文


PHP AuthManager::allowed方法代碼示例

本文整理匯總了PHP中AuthManager::allowed方法的典型用法代碼示例。如果您正苦於以下問題:PHP AuthManager::allowed方法的具體用法?PHP AuthManager::allowed怎麽用?PHP AuthManager::allowed使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在AuthManager的用法示例。


在下文中一共展示了AuthManager::allowed方法的5個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。

示例1: AuthManager

<?php

require_once __DIR__ . "/../server/tools.php";
require_once __DIR__ . "/../server/auth/Config.php";
require_once __DIR__ . "/../server/auth/AuthManager.php";
$config = Config::getInstance();
$am = new AuthManager("Public::inscripciones_equipos");
if (!$am->allowed(ENABLE_PUBLIC)) {
    include_once "unregistered.php";
    return 0;
}
?>

<!--
pb_inscripciones_eq3.inc

Copyright  2013-2016 by Juan Antonio Martinez ( juansgaviota at gmail dot com )

This program is free software; you can redistribute it and/or modify it under the terms 
of the GNU General Public License as published by the Free Software Foundation; 
either version 2 of the License, or (at your option) any later version.

This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; 
without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. 
See the GNU General Public License for more details.

You should have received a copy of the GNU General Public License along with this program; 
if not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
 -->

<!-- Presentacion de las inscripciones de la jornada -->
開發者ID:nedy13,項目名稱:AgilityContest,代碼行數:31,代碼來源:pbmenu_inscripciones_equipos.php

示例2: AuthManager

<?php

header("Cache-Control: no-store, no-cache, must-revalidate, max-age=0");
header("Cache-Control: post-check=0, pre-check=0", false);
header("Pragma: no-cache");
require_once __DIR__ . "/../server/tools.php";
require_once __DIR__ . "/../server/auth/Config.php";
require_once __DIR__ . "/../server/auth/AuthManager.php";
$config = Config::getInstance();
$am = new AuthManager("Videowall::parciales");
if (!$am->allowed(ENABLE_LIVESTREAM)) {
    include_once "unregistered.php";
    return 0;
}
$combined = http_request("combined", "i", 0);
?>
<!--
vwls_ordensalida.inc

Copyright  2013-2016 by Juan Antonio Martinez ( juansgaviota at gmail dot com )

This program is free software; you can redistribute it and/or modify it under the terms 
of the GNU General Public License as published by the Free Software Foundation; 
either version 2 of the License, or (at your option) any later version.

This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; 
without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. 
See the GNU General Public License for more details.

You should have received a copy of the GNU General Public License along with this program; 
if not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
開發者ID:nedy13,項目名稱:AgilityContest,代碼行數:31,代碼來源:vwls_ordensalida.php

示例3: AuthManager

<?php

header("Cache-Control: no-store, no-cache, must-revalidate, max-age=0");
header("Cache-Control: post-check=0, pre-check=0", false);
header("Pragma: no-cache");
require_once __DIR__ . "/../server/tools.php";
require_once __DIR__ . "/../server/auth/Config.php";
require_once __DIR__ . "/../server/auth/AuthManager.php";
$config = Config::getInstance();
$am = new AuthManager("Chrono");
if (!$am->allowed(ENABLE_CHRONO)) {
    include_once "unregistered.html";
    return 0;
}
$linfo = $am->getRegistrationInfo();
?>
<!--
chrono.inc

Copyright  2013-2016 by Juan Antonio Martinez ( juansgaviota at gmail dot com )

This program is free software; you can redistribute it and/or modify it under the terms 
of the GNU General Public License as published by the Free Software Foundation; 
either version 2 of the License, or (at your option) any later version.

This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; 
without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. 
See the GNU General Public License for more details.

You should have received a copy of the GNU General Public License along with this program; 
if not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
開發者ID:nedy13,項目名稱:AgilityContest,代碼行數:31,代碼來源:chrono.inc.php

示例4: AuthManager

You should have received a copy of the GNU General Public License along with this program; 
if not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
 -->
<?php 
require_once __DIR__ . "/../server/tools.php";
require_once __DIR__ . "/../server/auth/Config.php";
require_once __DIR__ . "/../server/auth/AuthManager.php";
$config = Config::getInstance();
$am = new AuthManager("Competicion");
require_once "dialogs/dlg_ordentandas.inc";
require_once "dialogs/dlg_ordensalida.inc";
require_once "dialogs/dlg_competicion.inc";
switch (http_request("tipo", "s", "std")) {
    case "eq3":
    case "eq4":
        if (!$am->allowed(ENABLE_TEAMS)) {
            require_once "unregistered.html";
            return 0;
        }
        require_once "dialogs/dlg_resultados_equipos.inc";
        break;
    case "ko":
        if (!$am->allowed(ENABLE_KO)) {
            require_once "unregistered.html";
            return 0;
        }
        require_once "dialogs/dlg_resultados_ko.inc";
        break;
    case "std":
    case "open":
    default:
開發者ID:nedy13,項目名稱:AgilityContest,代碼行數:31,代碼來源:frm_competicion2.php

示例5: AuthManager

<?php

header("Cache-Control: no-store, no-cache, must-revalidate, max-age=0");
header("Cache-Control: post-check=0, pre-check=0", false);
header("Pragma: no-cache");
require_once __DIR__ . "/../server/tools.php";
require_once __DIR__ . "/../server/auth/Config.php";
require_once __DIR__ . "/../server/auth/AuthManager.php";
$config = Config::getInstance();
$am = new AuthManager("Videowall::combinada");
if (!$am->allowed(ENABLE_VIDEOWALL)) {
    include_once "unregistered.php";
    return 0;
}
?>
<!--
vwc_finales.php

Copyright  2013-2016 by Juan Antonio Martinez ( juansgaviota at gmail dot com )

This program is free software; you can redistribute it and/or modify it under the terms 
of the GNU General Public License as published by the Free Software Foundation; 
either version 2 of the License, or (at your option) any later version.

This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; 
without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. 
See the GNU General Public License for more details.

You should have received a copy of the GNU General Public License along with this program; 
if not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
 -->
開發者ID:nedy13,項目名稱:AgilityContest,代碼行數:31,代碼來源:vwc_finales.php


注:本文中的AuthManager::allowed方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。