本文整理匯總了PHP中UserUtils::add_role方法的典型用法代碼示例。如果您正苦於以下問題:PHP UserUtils::add_role方法的具體用法?PHP UserUtils::add_role怎麽用?PHP UserUtils::add_role使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類UserUtils
的用法示例。
在下文中一共展示了UserUtils::add_role方法的1個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。
示例1: display_error
$module = $_GET['mod'];
} else {
display_error($string['fatalerrormsg0'], $string['fatalerrormsg1'], true);
}
$session = date_utils::get_current_academic_year();
$modID = module_utils::get_idMod($module, $mysqli);
// Translate module code into ID
$mod_details = module_utils::get_full_details_by_ID($modID, $mysqli);
if ($mod_details === false) {
$msg = sprintf($string['nomodule'], $module);
display_error('Module ID error', $msg, false, true);
}
if ($mod_details['active'] == 1 and $mod_details['selfenroll'] == 1 and isset($_POST['submit'])) {
if (!$userObject->has_role('Student')) {
// Add role of 'Student' if current user doesn't have it.
UserUtils::add_role('Student', $userObject->get_user_ID(), $mysqli);
}
// Insert new module enrollment
UserUtils::add_student_to_module($userObject->get_user_ID(), $modID, 1, $_POST['session'], $mysqli);
}
?>
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta http-equiv="content-type" content="text/html;charset=<?php
echo $configObject->get('cfg_page_charset');
?>
" />
<title><?php