// swad_setting_database.h: user's settings / preferences, operations with database #ifndef _SWAD_SET_DB #define _SWAD_SET_DB /* 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ņas Vargas 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 . */ /*****************************************************************************/ /***************************** Public prototypes *****************************/ /*****************************************************************************/ //--------------------------- Global user settings ---------------------------- void Set_DB_UpdateMySettingsAboutLanguage (void); void Set_DB_UpdateMySettingsAboutDateFormat (Dat_Format_t DateFormat); void Set_DB_UpdateMySettingsAboutFirstDayOfWeek (unsigned FirstDayOfWeek); void Set_DB_UpdateMySettingsAboutIconSet (const char *IconSetId); void Set_DB_UpdateMySettingsAboutMenu (Mnu_Menu_t Menu); void Set_DB_UpdateMySettingsAboutTheme (const char *ThemeId); void Set_DB_UpdateMySettingsAboutSideCols (void); void Set_DB_UpdateMySettingsAboutPhotoShape (void); void Set_DB_UpdateMySettingsAboutPhotoVisibility (void); void Set_DB_UpdateMySettingsAboutBasicProfile (void); void Set_DB_UpdateMySettingsAboutExtendedProfile (void); void Set_DB_UpdateMySettingsAboutNotifyEvents (void); unsigned Set_DB_GetMyLanguage (MYSQL_RES **mysql_res); //-------------------- User settings in the current course -------------------- void Set_DB_InsertUsrInCrsSettings (long UsrCod,long HieCod); void Set_DB_UpdateGrpMyLastAccZone (const char *FieldNameDB,long GrpCod); void Set_DB_UpdateMyUsrListType (void); void Set_DB_UpdateMyColsClassPhoto (void); void Set_DB_UpdateMyPrefAboutListWithPhotosPhoto (void); unsigned Set_DB_GetMyUsrListType (MYSQL_RES **mysql_res); unsigned Set_DB_GetMyColsClassPhoto (MYSQL_RES **mysql_res); unsigned Set_DB_GetMyPrefAboutListWithPhotosPhoto (MYSQL_RES **mysql_res); void Set_DB_RemUsrFromCrsSettings (long UsrCod,long HieCod); void Set_DB_RemUsrFromAllCrssSettings (long UsrCod); void Set_DB_RemAllUsrsFromCrsSettings (long HieCod); //------------------- IP settings (when no user logged) ----------------------- void Set_DB_UpdateMyIPSettingsForCurrentIP (void); void Set_DB_UpdateMyIPSettingsForAllMyIPs (void); unsigned Set_DB_GetSettingsFromIP (MYSQL_RES **mysql_res); void Set_DB_RemoveOldSettingsFromIP (void); #endif