swad-core/swad_program.h

65 lines
2.4 KiB
C
Raw Normal View History

2020-02-20 23:48:48 +01:00
// swad_program.h: course program
#ifndef _SWAD_PRG
#define _SWAD_PRG
/*
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-2020 Antonio Ca<EFBFBD>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 <http://www.gnu.org/licenses/>.
*/
/*****************************************************************************/
/********************************* Headers ***********************************/
/*****************************************************************************/
2020-03-05 10:35:23 +01:00
#include "swad_hierarchy.h"
2020-02-20 23:48:48 +01:00
/*****************************************************************************/
/************************** Public types and constants ***********************/
/*****************************************************************************/
/*****************************************************************************/
/***************************** Public prototypes *****************************/
/*****************************************************************************/
2020-03-04 00:33:48 +01:00
void Prg_ShowCourseProgram (void);
2020-02-20 23:48:48 +01:00
2020-03-03 00:56:22 +01:00
void Prg_RequestCreatePrgItem (void);
void Prg_RequestChangePrgItem (void);
void Prg_RecFormNewPrgItem (void);
void Prg_RecFormChgPrgItem (void);
2020-02-27 00:19:55 +01:00
2020-02-20 23:48:48 +01:00
void Prg_ReqRemPrgItem (void);
void Prg_RemovePrgItem (void);
void Prg_HidePrgItem (void);
2020-03-05 01:37:48 +01:00
void Prg_UnhidePrgItem (void);
2020-02-27 00:19:55 +01:00
2020-02-26 00:26:07 +01:00
void Prg_MoveUpPrgItem (void);
void Prg_MoveDownPrgItem (void);
2020-02-27 00:19:55 +01:00
void Prg_MoveLeftPrgItem (void);
2020-03-02 14:41:52 +01:00
void Prg_MoveRightPrgItem (void);
2020-02-27 00:19:55 +01:00
2020-02-20 23:48:48 +01:00
void Prg_RecFormPrgItem (void);
2020-02-26 00:26:07 +01:00
void Prg_RemoveCrsItems (long CrsCod);
unsigned Prg_GetNumItemsInCrsProgram(long CrsCod);
2020-02-20 23:48:48 +01:00
2020-02-26 00:26:07 +01:00
unsigned Prg_GetNumCoursesWithItems (Hie_Level_t Scope);
unsigned Prg_GetNumItems (Hie_Level_t Scope);
2020-02-20 23:48:48 +01:00
#endif