当前位置: 首页>>代码示例>>PHP>>正文


PHP GlobalConfig::setAuthenticatedUser方法代码示例

本文整理汇总了PHP中GlobalConfig::setAuthenticatedUser方法的典型用法代码示例。如果您正苦于以下问题:PHP GlobalConfig::setAuthenticatedUser方法的具体用法?PHP GlobalConfig::setAuthenticatedUser怎么用?PHP GlobalConfig::setAuthenticatedUser使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在GlobalConfig的用法示例。


在下文中一共展示了GlobalConfig::setAuthenticatedUser方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。

示例1: UserModel

 $_SESSION[UserModel::KEYNAME] = $id_user;
 $_SESSION[UserModel::FIELDNAME_ID_CATSOPRO] = $id_catsopro;
 $_SESSION[UserModel::FIELDNAME_ID_SERVICE] = $id_service;
 $_SESSION[UserModel::FIELDNAME_ID_TYPE] = $nom_type;
 $_SESSION['num_log'] = $num_log;
 $_SESSION['position'] = $position;
 //$_SESSION['bdd']=$bdd;
 $_SESSION["mail_user"] = $mail_user;
 $_SESSION[UserModel::FIELDNAME_LIEU_GEO] = $lieu_geo;
 $_SESSION[UserModel::FIELDNAME_PORTAIL_WIKI_SALARIES] = $portail_wiki_salaries;
 /**
  * Enregistrement de l'utilisateur authentifié
  */
 $authenticatedUser = new UserModel($id_user);
 $globalConfig = new GlobalConfig();
 $globalConfig->setAuthenticatedUser($authenticatedUser);
 GlobalConfig::saveGlobalConfToPhpSession($globalConfig);
 /* --------------------------------------------------------------
    Appel de la page qui définit les droits d'accès de l'utilisateur
    dans l'ensemble des pages des modules
    -------------------------------------------------------------- */
 include 'droits_acces.php';
 /* -------------------------------------------------------------
    Variables définissant que l'utilisateur est sur l'Intranet Agis
    cette variable est utile lorsque l'utilisateur utilie des
    applications autres
    ------------------------------------------------------------- */
 //Permet à phpMyAdmin d'identifier l'Intranet
 $application_courante = 'intranet.agis.fr';
 //session_register( 'application_courante' );
 $mysql_user;
开发者ID:SalokineTerata,项目名称:intranet,代码行数:31,代码来源:login.php


注:本文中的GlobalConfig::setAuthenticatedUser方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。