33 $this->
lng = $DIC->language();
34 $this->
lng->loadLanguageModule(
"survey");
35 $this->
user = $DIC->user();
36 $this->rbacsystem = $DIC->rbac()->system();
38 $this->info_screen_enabled =
true;
41 public function init(): void
43 $this->static_link_enabled =
true;
44 $this->delete_enabled =
true;
45 $this->cut_enabled =
true;
46 $this->copy_enabled =
true;
47 $this->subscribe_enabled =
true;
48 $this->link_enabled =
true;
50 $this->gui_class_name =
"ilobjsurveygui";
65 if (!$rbacsystem->
checkAccess(
"visible,read", $this->ref_id)) {
69 $props = parent::getProperties();
75 $props[] = array(
"alert" =>
true,
76 "property" =>
$lng->
txt(
"svy_participation"),
77 "value" =>
$lng->
txt(
"svy_warning_survey_not_complete"),
78 'propertyNameVisible' =>
false);
82 $props[] = array(
"alert" =>
false,
"property" =>
$lng->
txt(
"type"),
83 "value" =>
$lng->
txt(
"survey_360_mode"),
'propertyNameVisible' =>
true);
85 $props[] = array(
"alert" =>
false,
"property" =>
$lng->
txt(
"type"),
86 "value" =>
$lng->
txt(
"survey_360_self_evaluation"),
'propertyNameVisible' =>
true);
91 if ($finished === 1) {
92 $stat = $this->
lng->txt(
"svy_finished");
95 elseif ($finished === 0) {
96 $stat = $this->
lng->txt(
"svy_not_finished");
100 $stat = $this->
lng->txt(
"svy_not_started");
102 $props[] = array(
"alert" =>
false,
"property" =>
$lng->
txt(
"svy_participation"),
103 "value" => $stat,
'propertyNameVisible' =>
true);
114 $link =
"ilias.php?baseClass=ilObjSurveyGUI&ref_id=" . $this->ref_id .
117 $this->
ctrl->setParameterByClass(
"ilObjSurveyGUI",
"ref_id", $this->ref_id);
118 if ($cmd ===
"questions") {
119 $link = $this->
ctrl->getLinkTargetByClass(
121 "ilObjSurveyGUI",
"ilSurveyEditorGUI"],
125 if ($cmd ===
"run") {
126 $link = $this->
ctrl->getLinkTargetByClass(
133 $this->
ctrl->setParameterByClass(
136 $this->requested_ref_id
txt(string $a_topic, string $a_default_lang_fallback_mod="")
gets the text for a given topic if the topic is not in the list, the topic itself with "-" will be re...
static _lookupFinished(int $a_obj_id, int $a_user_id=0)
get finished status
static lookupOfflineStatus(int $obj_id)
Lookup offline status using objectDataCache.
checkAccess(string $a_operations, int $a_ref_id, string $a_type="")
checkAccess represents the main method of the RBAC-system in ILIAS3 developers want to use With this ...
static _lookupMode(int $a_obj_id)
Get survey mode (see ilObjSurvey::MODE_...
getCommandLink(string $cmd)
__construct(Container $dic, ilPlugin $plugin)
static _lookupCreationComplete(int $a_obj_id)
checks whether all necessary parts of the survey are given
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...