ILIAS  trunk Revision v11.0_alpha-1702-gfd3ecb7f852
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
class.ilSurveyCronNotification.php
Go to the documentation of this file.
1 <?php
2 
22 
30 {
31  protected ilLanguage $lng;
32  protected ilTree $tree;
33 
34  public function __construct()
35  {
36  global $DIC;
37 
38  $this->lng = $DIC->language();
39  if (isset($DIC["tree"])) {
40  $this->tree = $DIC->repositoryTree();
41  }
42  }
43 
44  public function getId(): string
45  {
46  return "survey_notification";
47  }
48 
49  public function getTitle(): string
50  {
51  $lng = $this->lng;
52 
53  $lng->loadLanguageModule("survey");
54  return $lng->txt("survey_reminder_cron");
55  }
56 
57  public function getDescription(): string
58  {
59  $lng = $this->lng;
60 
61  $lng->loadLanguageModule("survey");
62  return $lng->txt("survey_reminder_cron_info");
63  }
64 
66  {
67  return JobScheduleType::DAILY;
68  }
69 
70  public function getDefaultScheduleValue(): ?int
71  {
72  return null;
73  }
74 
75  public function hasAutoActivation(): bool
76  {
77  return true;
78  }
79 
80  public function hasFlexibleSchedule(): bool
81  {
82  return false;
83  }
84 
85  public function run(): JobResult
86  {
87  global $tree;
88 
90  $log->debug("start");
91 
92  $status = JobResult::STATUS_NO_ACTION;
93  $message = array();
94 
95  $root = $tree->getNodeData(ROOT_FOLDER_ID);
96  foreach ($tree->getSubTree($root, false, ["svy"]) as $svy_ref_id) {
97  $svy = new ilObjSurvey($svy_ref_id);
98  $num = $svy->checkReminder();
99  if (!is_null($num)) {
100  $message[] = $svy_ref_id . "(" . $num . ")";
101  $status = JobResult::STATUS_OK;
102  }
103  }
104 
105  $result = new JobResult();
106  $result->setStatus($status);
107 
108  if (count($message)) {
109  $result->setMessage("Ref-Ids: " . implode(", ", $message) . ' / ' . "#" . count($message));
110  }
111  $log->debug("end");
112  return $result;
113  }
114 }
static getLogger(string $a_component_id)
Get component logger.
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...
const ROOT_FOLDER_ID
Definition: constants.php:32
loadLanguageModule(string $a_module)
Load language module.
while($session_entry=$r->fetchRow(ilDBConstants::FETCHMODE_ASSOC)) return null
Cron for survey notifications (reminder to paricipate in the survey)
$log
Definition: result.php:32
global $DIC
Definition: shib_login.php:22
$message
Definition: xapiexit.php:31