2022-09-24 18:53:31 +02:00
|
|
|
|
// swad_survey_resource.c: links to surveys as program resources
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
|
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.
|
2023-03-10 17:21:04 +01:00
|
|
|
|
Copyright (C) 1999-2023 Antonio Ca<EFBFBD>as Vargas
|
2022-09-24 18:53:31 +02: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 ***********************************/
|
|
|
|
|
/*****************************************************************************/
|
|
|
|
|
|
2022-11-06 18:11:10 +01:00
|
|
|
|
#include "swad_action_list.h"
|
2022-09-24 18:53:31 +02:00
|
|
|
|
#include "swad_alert.h"
|
|
|
|
|
#include "swad_error.h"
|
|
|
|
|
#include "swad_form.h"
|
2023-03-10 17:21:04 +01:00
|
|
|
|
#include "swad_parameter_code.h"
|
2023-03-27 12:18:14 +02:00
|
|
|
|
#include "swad_resource_database.h"
|
2022-09-24 18:53:31 +02:00
|
|
|
|
#include "swad_survey.h"
|
|
|
|
|
#include "swad_survey_database.h"
|
2022-09-28 15:19:17 +02:00
|
|
|
|
#include "swad_survey_resource.h"
|
2022-09-24 18:53:31 +02:00
|
|
|
|
|
|
|
|
|
/*****************************************************************************/
|
|
|
|
|
/**************************** Get link to survey *****************************/
|
|
|
|
|
/*****************************************************************************/
|
|
|
|
|
|
|
|
|
|
void SvyRsc_GetLinkToSurvey (void)
|
|
|
|
|
{
|
|
|
|
|
extern const char *Txt_Link_to_resource_X_copied_into_clipboard;
|
2023-04-18 22:13:37 +02:00
|
|
|
|
extern const char *Txt_Surveys;
|
2022-09-24 18:53:31 +02:00
|
|
|
|
struct Svy_Surveys Surveys;
|
|
|
|
|
|
|
|
|
|
/***** Reset surveys context *****/
|
|
|
|
|
Svy_ResetSurveys (&Surveys);
|
|
|
|
|
|
|
|
|
|
/***** Get survey code *****/
|
2023-03-30 16:07:37 +02:00
|
|
|
|
Surveys.Svy.SvyCod = ParCod_GetPar (ParCod_Svy);
|
2022-09-24 18:53:31 +02:00
|
|
|
|
|
2023-04-18 22:13:37 +02:00
|
|
|
|
/***** Get survey data *****/
|
|
|
|
|
if (Surveys.Svy.SvyCod > 0)
|
|
|
|
|
Svy_GetSurveyDataByCod (&Surveys.Svy);
|
2022-09-24 18:53:31 +02:00
|
|
|
|
|
|
|
|
|
/***** Copy link to survey into resource clipboard *****/
|
2023-03-27 12:18:14 +02:00
|
|
|
|
Rsc_DB_CopyToClipboard (Rsc_SURVEY,Surveys.Svy.SvyCod);
|
2022-09-24 18:53:31 +02:00
|
|
|
|
|
|
|
|
|
/***** Write sucess message *****/
|
|
|
|
|
Ale_ShowAlert (Ale_SUCCESS,Txt_Link_to_resource_X_copied_into_clipboard,
|
2023-04-18 22:13:37 +02:00
|
|
|
|
Surveys.Svy.SvyCod > 0 ? Surveys.Svy.Title :
|
|
|
|
|
Txt_Surveys);
|
2022-09-24 18:53:31 +02:00
|
|
|
|
|
|
|
|
|
/***** Show surveys again *****/
|
|
|
|
|
Svy_ListAllSurveys (&Surveys);
|
|
|
|
|
}
|