swad-core/swad_social.h

96 lines
3.1 KiB
C
Raw Normal View History

2015-12-31 14:25:28 +01:00
// swad_social.c: social networking (timeline)
2015-12-28 19:23:42 +01:00
#ifndef _SWAD_SOC
#define _SWAD_SOC
/*
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-2015 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 **********************************/
/*****************************************************************************/
/*****************************************************************************/
/****************************** Public constants *****************************/
/*****************************************************************************/
/*****************************************************************************/
/******************************** Public types *******************************/
/*****************************************************************************/
2015-12-31 14:25:28 +01:00
#define Soc_NUM_SOCIAL_NOTES 13
2015-12-28 19:23:42 +01:00
// If the numbers assigned to each event type change,
2015-12-31 14:25:28 +01:00
// it is necessary to change old numbers to new ones in database table social_notes
2015-12-28 19:23:42 +01:00
typedef enum
{
2015-12-31 14:25:28 +01:00
Soc_NOTE_UNKNOWN = 0,
2015-12-28 19:23:42 +01:00
/* Institution tab */
2015-12-31 14:25:28 +01:00
Soc_NOTE_INS_DOC_PUB_FILE = 1,
Soc_NOTE_INS_SHA_PUB_FILE = 2,
2015-12-28 19:23:42 +01:00
/* Centre tab */
2015-12-31 14:25:28 +01:00
Soc_NOTE_CTR_DOC_PUB_FILE = 3,
Soc_NOTE_CTR_SHA_PUB_FILE = 4,
2015-12-28 19:23:42 +01:00
/* Degree tab */
2015-12-31 14:25:28 +01:00
Soc_NOTE_DEG_DOC_PUB_FILE = 5,
Soc_NOTE_DEG_SHA_PUB_FILE = 6,
2015-12-28 19:23:42 +01:00
/* Course tab */
2015-12-31 14:25:28 +01:00
Soc_NOTE_CRS_DOC_PUB_FILE = 7,
Soc_NOTE_CRS_SHA_PUB_FILE = 8,
2015-12-28 19:23:42 +01:00
/* Assessment tab */
2015-12-31 14:25:28 +01:00
Soc_NOTE_EXAM_ANNOUNCEMENT = 9,
2015-12-28 19:23:42 +01:00
2015-12-29 10:38:46 +01:00
/* Users tab */
2015-12-28 19:23:42 +01:00
/* Social tab */
2015-12-31 14:25:28 +01:00
Soc_NOTE_SOCIAL_POST = 10,
Soc_NOTE_FORUM_POST = 11,
2015-12-28 19:23:42 +01:00
/* Messages tab */
2015-12-31 14:25:28 +01:00
Soc_NOTE_NOTICE = 12,
2015-12-28 19:23:42 +01:00
/* Statistics tab */
/* Profile tab */
2015-12-31 14:25:28 +01:00
} Soc_SocialNote_t;
2015-12-28 19:23:42 +01:00
/*****************************************************************************/
/****************************** Public prototypes ****************************/
/*****************************************************************************/
2015-12-29 14:24:37 +01:00
void Soc_ShowUsrTimeline (long UsrCod);
void Soc_ShowFollowingTimeline (void);
2015-12-28 19:23:42 +01:00
2015-12-31 14:25:28 +01:00
void Soc_StoreSocialNote (Soc_SocialNote_t SocialNote,long Cod);
2015-12-28 20:46:48 +01:00
2015-12-30 12:40:13 +01:00
void Soc_FormSocialPost (void);
void Soc_ReceiveSocialPost (void);
2015-12-31 14:25:28 +01:00
void Soc_RequestRemovalSocialNote (void);
void Soc_RemoveSocialNote (void);
2015-12-30 02:08:08 +01:00
2015-12-28 19:23:42 +01:00
#endif