swad-core/swad_role.h

61 lines
2.4 KiB
C
Raw Permalink Normal View History

2014-12-01 23:55:08 +01:00
// swad_role.h: user's roles
#ifndef _SWAD_ROL
#define _SWAD_ROL
/*
SWAD (Shared Workspace At a Distance in Spanish),
is a web platform developed at the University of Granada (Spain),
and used to support university teaching.
This file is part of SWAD core.
Copyright (C) 1999-2024 Antonio Ca<EFBFBD>as Vargas
2014-12-01 23:55:08 +01:00
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU Affero General Public License as
published by the Free Software Foundation, either version 3 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 Affero General Public License for more details.
You should have received a copy of the GNU Affero General Public License
along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
/*****************************************************************************/
/********************************** Headers **********************************/
/*****************************************************************************/
2020-03-12 13:53:37 +01:00
#include "swad_HTML.h"
2016-12-13 13:32:19 +01:00
#include "swad_user.h"
2014-12-01 23:55:08 +01:00
/*****************************************************************************/
/****************************** Public prototypes ****************************/
/*****************************************************************************/
2017-06-04 14:22:04 +02:00
void Rol_SetMyRoles (void);
2014-12-12 20:25:00 +01:00
unsigned Rol_GetNumAvailableRoles (void);
2017-05-18 20:40:57 +02:00
Rol_Role_t Rol_GetMaxRoleInCrss (unsigned Roles);
Rol_Role_t Rol_GetMyMaxRoleIn (Hie_Level_t Level,long HieCod);
void Rol_FlushCacheMyRoleInCurrentCrs (void);
2014-12-12 20:25:00 +01:00
Rol_Role_t Rol_GetMyRoleInCrs (long CrsCod);
2017-06-20 14:43:26 +02:00
void Rol_FlushCacheRoleUsrInCrs (void);
Rol_Role_t Rol_GetRoleUsrInCrs (long UsrCod,long CrsCod);
void Rol_GetRolesInAllCrss (struct Usr_Data *UsrDat);
2014-12-12 20:25:00 +01:00
Rol_Role_t Rol_ConvertUnsignedStrToRole (const char *UnsignedStr);
unsigned Rol_ConvertUnsignedStrToRoles (const char *UnsignedStr);
2018-10-09 19:18:43 +02:00
void Rol_PutFormToChangeMyRole (const char *ClassSelect);
2014-12-12 20:25:00 +01:00
void Rol_ChangeMyRole (void);
2016-03-24 15:09:52 +01:00
void Rol_WriteSelectorRoles (unsigned RolesAllowed,unsigned RolesSelected,
2020-03-12 13:53:37 +01:00
bool Disabled,HTM_SubmitOnChange_t SubmitOnChange);
void Rol_PutParRoles (unsigned Roles);
2016-03-24 16:49:36 +01:00
unsigned Rol_GetSelectedRoles (void);
2014-12-12 20:25:00 +01:00
2014-12-01 23:55:08 +01:00
#endif