swad-core/swad_center.h

78 lines
2.8 KiB
C
Raw Normal View History

// swad_center.h: centers
2014-12-01 23:55:08 +01:00
#ifndef _SWAD_CTR
#define _SWAD_CTR
/*
SWAD (Shared Workspace At a Distance),
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 ***********************************/
/*****************************************************************************/
2018-10-30 13:59:37 +01:00
#include <mysql/mysql.h> // To access MySQL databases
2014-12-01 23:55:08 +01:00
#include "swad_action.h"
#include "swad_constant.h"
2016-10-20 00:57:00 +02:00
#include "swad_degree.h"
#include "swad_figure_cache.h"
2019-12-18 20:55:56 +01:00
#include "swad_map.h"
#include "swad_name.h"
2016-12-13 13:32:19 +01:00
#include "swad_role_type.h"
2014-12-01 23:55:08 +01:00
/*****************************************************************************/
/****************************** Public prototypes ****************************/
/*****************************************************************************/
void Ctr_SeeCtrWithPendingDegs (void);
void Ctr_DrawCenterLogoAndNameWithLink (struct Hie_Node *Ctr,Act_Action_t Action,
const char *IconClass);
2015-11-19 19:37:44 +01:00
2014-12-01 23:55:08 +01:00
void Ctr_ShowCtrsOfCurrentIns (void);
void Ctr_EditCenters (void);
2018-11-15 10:13:53 +01:00
void Ctr_GetBasicListOfCenters (long InsCod);
void Ctr_GetFullListOfCenters (long InsCod,Hie_Order_t SelectedOrder);
bool Ctr_GetCenterDataByCod (struct Hie_Node *Node);
void Ctr_GetCoordByCod (long CtrCod,struct Map_Coordinates *Coord);
void Ctr_WriteSelectorOfCenter (void);
void Ctr_RemoveCenter (void);
2017-06-12 19:14:05 +02:00
void Ctr_ChangeCtrPlc (void);
void Ctr_RenameCenterShrt (void);
void Ctr_RenameCenterFull (void);
void Ctr_RenameCenter (struct Hie_Node *Ctr,Nam_ShrtOrFullName_t ShrtOrFull);
2014-12-01 23:55:08 +01:00
void Ctr_ChangeCtrWWW (void);
void Ctr_ChangeCtrStatus (void);
2016-03-01 19:23:02 +01:00
void Ctr_ContEditAfterChgCtr (void);
2015-01-17 13:31:25 +01:00
void Ctr_ReceiveReqCtr (void);
void Ctr_ReceiveNewCtr (void);
2014-12-01 23:55:08 +01:00
2020-05-03 20:58:03 +02:00
unsigned Ctr_GetCachedNumCtrsWithMapInSys (void);
2020-05-03 21:56:55 +02:00
unsigned Ctr_GetCachedNumCtrsWithMapInCty (long CtyCod);
unsigned Ctr_GetCachedNumCtrsWithMapInIns (long InsCod);
unsigned Ctr_GetCachedNumCtrsWithUsrs (Rol_Role_t Role);
2014-12-01 23:55:08 +01:00
2018-10-30 13:59:37 +01:00
void Ctr_ListCtrsFound (MYSQL_RES **mysql_res,unsigned NumCtrs);
2014-12-01 23:55:08 +01:00
#endif