本文整理匯總了PHP中OA_Permission::enforceAccess方法的典型用法代碼示例。如果您正苦於以下問題:PHP OA_Permission::enforceAccess方法的具體用法?PHP OA_Permission::enforceAccess怎麽用?PHP OA_Permission::enforceAccess使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類OA_Permission
的用法示例。
在下文中一共展示了OA_Permission::enforceAccess方法的1個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。
示例1: phpAds_registerGlobalUnslashed
| along with this program; if not, write to the Free Software |
| Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA |
+---------------------------------------------------------------------------+
$Id: account-switch.php 37157 2009-05-28 12:31:10Z andrew.hill $
*/
// Require the initialisation file
require_once '../../init.php';
// Required files
require_once MAX_PATH . '/lib/OA/Dal.php';
require_once MAX_PATH . '/lib/OA/Dll.php';
require_once MAX_PATH . '/www/admin/config.php';
require_once LIB_PATH . '/Admin/Redirect.php';
require_once MAX_PATH . '/lib/OA/Admin/UI/AccountSwitch.php';
phpAds_registerGlobalUnslashed('return_url', 'account_id');
if (!empty($account_id)) {
OA_Permission::enforceAccess($account_id);
OA_Permission::switchAccount($account_id);
}
if (empty($return_url) && !empty($_SERVER['HTTP_REFERER'])) {
$return_url = $_SERVER['HTTP_REFERER'];
}
if (empty($return_url) || preg_match('/[\\r\\n]/', $_SERVER['HTTP_REFERER'])) {
$return_url = MAX::constructURL(MAX_URL_ADMIN, 'index.php');
} else {
$session['accountSwitch'] = 1;
phpAds_SessionDataStore();
}
// Ensure that we never return to this account-switch.php page, in the
// event that the session timed out, and then the user changed account
// manually...
$aUrlComponents = parse_url($return_url);