ILIAS  release_5-2 Revision v5.2.25-18-g3f80b828510
ilDAVCronDiskQuota Class Reference

Soft disk quota notifications. More...

+ Inheritance diagram for ilDAVCronDiskQuota:
+ Collaboration diagram for ilDAVCronDiskQuota:

Public Member Functions

 getId ()
 
 getTitle ()
 
 getDescription ()
 
 getDefaultScheduleType ()
 
 getDefaultScheduleValue ()
 
 hasAutoActivation ()
 
 hasFlexibleSchedule ()
 
 hasCustomSettings ()
 
 run ()
 
 addCustomSettingsToForm (ilPropertyFormGUI $a_form)
 
 saveCustomSettings (ilPropertyFormGUI $a_form)
 
 addToExternalSettingsForm ($a_form_id, array &$a_fields, $a_is_active)
 
 activationWasToggled ($a_currently_active)
 
- Public Member Functions inherited from ilCronJob
 isActive ($a_ts_last_run, $a_schedule_type, $a_schedule_value, $a_manual=false)
 Is job currently active? More...
 
 getScheduleType ()
 Get current schedule type (if flexible) More...
 
 getScheduleValue ()
 Get current schedule value (if flexible) More...
 
 setSchedule ($a_type, $a_value)
 Update current schedule (if flexible) More...
 
 getValidScheduleTypes ()
 Get all available schedule types. More...
 
 getTitle ()
 Get title. More...
 
 getDescription ()
 Get description. More...
 
 isManuallyExecutable ()
 Defines whether or not a cron job can be started manually. More...
 
 hasCustomSettings ()
 Has cron job any custom setting which can be edited? More...
 
 addCustomSettingsToForm (ilPropertyFormGUI $a_form)
 Add custom settings to form. More...
 
 saveCustomSettings (ilPropertyFormGUI $a_form)
 Save custom settings. More...
 
 addToExternalSettingsForm ($a_form_id, array &$a_fields, $a_is_active)
 Add external settings to form. More...
 
 activationWasToggled ($a_currently_active)
 Cron job status was changed. More...
 
 getId ()
 Get id. More...
 
 hasAutoActivation ()
 Is to be activated on "installation". More...
 
 hasFlexibleSchedule ()
 Can the schedule be configured? More...
 
 getDefaultScheduleType ()
 Get schedule type. More...
 
 getDefaultScheduleValue ()
 Get schedule value. More...
 
 run ()
 Run job. More...
 

Additional Inherited Members

- Data Fields inherited from ilCronJob
const SCHEDULE_TYPE_DAILY = 1
 
const SCHEDULE_TYPE_IN_MINUTES = 2
 
const SCHEDULE_TYPE_IN_HOURS = 3
 
const SCHEDULE_TYPE_IN_DAYS = 4
 
const SCHEDULE_TYPE_WEEKLY = 5
 
const SCHEDULE_TYPE_MONTHLY = 6
 
const SCHEDULE_TYPE_QUARTERLY = 7
 
const SCHEDULE_TYPE_YEARLY = 8
 
- Protected Member Functions inherited from ilCronJob
 checkSchedule ($a_ts_last_run, $a_schedule_type, $a_schedule_value)
 

Detailed Description

Soft disk quota notifications.

Author
Jörg Lützenkirchen luetz.nosp@m.enki.nosp@m.rchen.nosp@m.@lei.nosp@m.fos.c.nosp@m.om

Definition at line 12 of file class.ilDAVCronDiskQuota.php.

Member Function Documentation

◆ activationWasToggled()

ilDAVCronDiskQuota::activationWasToggled (   $a_currently_active)

Definition at line 161 of file class.ilDAVCronDiskQuota.php.

162  {
163  // #12221
164  $settings = new ilSetting('disk_quota');
165  $settings->set('enabled', $a_currently_active);
166 
167  /* objDefinition is not available in setup, we cannot use ilObject
168  require_once 'Services/WebDAV/classes/class.ilObjDiskQuotaSettings.php';
169  $disk_quota_obj = ilObjDiskQuotaSettings::getInstance();
170  $disk_quota_obj->setDiskQuotaEnabled((bool)$a_currently_active);
171  $disk_quota_obj->update();
172  */
173  }
ILIAS Setting Class.

◆ addCustomSettingsToForm()

ilDAVCronDiskQuota::addCustomSettingsToForm ( ilPropertyFormGUI  $a_form)

Definition at line 86 of file class.ilDAVCronDiskQuota.php.

References $DIC, $lng, ilPropertyFormGUI\addItem(), ilObjDiskQuotaSettings\getInstance(), ilTextInputGUI\setValue(), and ilCheckboxInputGUI\setValue().

87  {
88  global $DIC;
89  $lng = $DIC['lng'];
90 
91  $lng->loadLanguageModule("file");
92 
93  require_once 'Services/WebDAV/classes/class.ilObjDiskQuotaSettings.php';
94  $disk_quota_obj = ilObjDiskQuotaSettings::getInstance();
95 
96  // Enable disk quota reminder mail
97  $cb_prop_reminder = new ilCheckboxInputGUI($lng->txt("enable_disk_quota_reminder_mail"), "enable_disk_quota_reminder_mail");
98  $cb_prop_reminder->setValue('1');
99  $cb_prop_reminder->setChecked($disk_quota_obj->isDiskQuotaReminderMailEnabled());
100  $cb_prop_reminder->setInfo($lng->txt('disk_quota_reminder_mail_desc'));
101  $a_form->addItem($cb_prop_reminder);
102 
103  // Enable summary mail for certain users
104  $cb_prop_summary= new ilCheckboxInputGUI($lng->txt("enable_disk_quota_summary_mail"), "enable_disk_quota_summary_mail");
105  $cb_prop_summary->setValue(1);
106  $cb_prop_summary->setChecked($disk_quota_obj->isDiskQuotaSummaryMailEnabled());
107  $cb_prop_summary->setInfo($lng->txt('enable_disk_quota_summary_mail_desc'));
108  $a_form->addItem($cb_prop_summary);
109 
110  // Edit disk quota recipients
111  $summary_rcpt = new ilTextInputGUI($lng->txt("disk_quota_summary_rctp"), "disk_quota_summary_rctp");
112  $summary_rcpt->setValue($disk_quota_obj->getSummaryRecipients());
113  $summary_rcpt->setInfo($lng->txt('disk_quota_summary_rctp_desc'));
114  $cb_prop_summary->addSubItem($summary_rcpt);
115  }
This class represents a checkbox property in a property form.
addItem($a_item)
Add Item (Property, SectionHeader).
setValue($a_value)
Set Value.
This class represents a text property in a property form.
global $lng
Definition: privfeed.php:17
global $DIC
setValue($a_value)
Set Value.
static getInstance()
Get settings instance.
+ Here is the call graph for this function:

◆ addToExternalSettingsForm()

ilDAVCronDiskQuota::addToExternalSettingsForm (   $a_form_id,
array $a_fields,
  $a_is_active 
)

Definition at line 129 of file class.ilDAVCronDiskQuota.php.

References $DIC, $lng, ilDiskQuotaActivationChecker\_isReminderMailActive(), ilDiskQuotaActivationChecker\_isSummaryMailActive(), array, ilAdministrationSettingsFormHandler\FORM_FILES_QUOTA, ilAdministrationSettingsFormHandler\FORM_REPOSITORY, and ilAdministrationSettingsFormHandler\VALUE_BOOL.

130  {
131  global $DIC;
132  $lng = $DIC['lng'];
133 
134  $lng->loadLanguageModule("file");
135 
136  switch($a_form_id)
137  {
140 
141  require_once('Services/WebDAV/classes/class.ilDiskQuotaActivationChecker.php');
142 
143  $subitems = array(
144  "enable_disk_quota_reminder_mail" => array(
147  ),
148  "enable_disk_quota_summary_mail" => array(
151  )
152  );
153  $a_fields["repository_disk_quota"] = array($a_is_active ?
154  $lng->txt("enabled") :
155  $lng->txt("disabled"),
156  null, $subitems);
157  break;
158  }
159  }
Create styles array
The data for the language used.
global $lng
Definition: privfeed.php:17
global $DIC
+ Here is the call graph for this function:

◆ getDefaultScheduleType()

ilDAVCronDiskQuota::getDefaultScheduleType ( )

Definition at line 37 of file class.ilDAVCronDiskQuota.php.

38  {
39  return self::SCHEDULE_TYPE_DAILY;
40  }

◆ getDefaultScheduleValue()

ilDAVCronDiskQuota::getDefaultScheduleValue ( )

Definition at line 42 of file class.ilDAVCronDiskQuota.php.

43  {
44  return;
45  }

◆ getDescription()

ilDAVCronDiskQuota::getDescription ( )

Definition at line 28 of file class.ilDAVCronDiskQuota.php.

References $DIC, and $lng.

29  {
30  global $DIC;
31  $lng = $DIC['lng'];
32 
33  $lng->loadLanguageModule("file");
34  return $lng->txt("repository_disk_quota_info");
35  }
global $lng
Definition: privfeed.php:17
global $DIC

◆ getId()

ilDAVCronDiskQuota::getId ( )

Definition at line 14 of file class.ilDAVCronDiskQuota.php.

15  {
16  return "rep_disk_quota";
17  }

◆ getTitle()

ilDAVCronDiskQuota::getTitle ( )

Definition at line 19 of file class.ilDAVCronDiskQuota.php.

References $DIC, and $lng.

20  {
21  global $DIC;
22  $lng = $DIC['lng'];
23 
24  $lng->loadLanguageModule("file");
25  return $lng->txt("repository_disk_quota");
26  }
global $lng
Definition: privfeed.php:17
global $DIC

◆ hasAutoActivation()

ilDAVCronDiskQuota::hasAutoActivation ( )

Definition at line 47 of file class.ilDAVCronDiskQuota.php.

48  {
49  return false;
50  }

◆ hasCustomSettings()

ilDAVCronDiskQuota::hasCustomSettings ( )

Definition at line 57 of file class.ilDAVCronDiskQuota.php.

58  {
59  return true;
60  }

◆ hasFlexibleSchedule()

ilDAVCronDiskQuota::hasFlexibleSchedule ( )

Definition at line 52 of file class.ilDAVCronDiskQuota.php.

53  {
54  return false;
55  }

◆ run()

ilDAVCronDiskQuota::run ( )

Definition at line 62 of file class.ilDAVCronDiskQuota.php.

References $result, ilDiskQuotaActivationChecker\_isActive(), ilDiskQuotaActivationChecker\_isReminderMailActive(), ilDiskQuotaActivationChecker\_isSummaryMailActive(), ilDiskQuotaChecker\_sendReminderMails(), ilDiskQuotaChecker\_sendSummaryMails(), ilDiskQuotaChecker\_updateDiskUsageReport(), and ilCronJobResult\STATUS_OK.

63  {
64  require_once'./Services/WebDAV/classes/class.ilDiskQuotaActivationChecker.php';
66  {
67  require_once'./Services/WebDAV/classes/class.ilDiskQuotaChecker.php';
69 
71  {
73  }
74 
76  {
78  }
79  }
80 
81  $result = new ilCronJobResult();
83  return $result;
84  }
static _sendReminderMails()
Sends reminder e-mails to all users who have access and who have exceeded their disk quota and who ha...
$result
static _updateDiskUsageReport()
Updates the disk usage info of all user accounts.
Cron job result data container.
+ Here is the call graph for this function:

◆ saveCustomSettings()

ilDAVCronDiskQuota::saveCustomSettings ( ilPropertyFormGUI  $a_form)

Definition at line 117 of file class.ilDAVCronDiskQuota.php.

References $_POST, ilObjDiskQuotaSettings\getInstance(), and ilUtil\stripSlashes().

118  {
119  require_once 'Services/WebDAV/classes/class.ilObjDiskQuotaSettings.php';
120  $disk_quota_obj = ilObjDiskQuotaSettings::getInstance();
121  $disk_quota_obj->setDiskQuotaReminderMailEnabled($_POST['enable_disk_quota_reminder_mail'] == '1');
122  $disk_quota_obj->isDiskQuotaSummaryMailEnabled($_POST['enable_disk_quota_summary_mail'] == '1');
123  $disk_quota_obj->setSummaryRecipients(ilUtil::stripSlashes($_POST['disk_quota_summary_rctp']));
124  $disk_quota_obj->update();
125 
126  return true;
127  }
static stripSlashes($a_str, $a_strip_html=true, $a_allow="")
strip slashes if magic qoutes is enabled
$_POST["username"]
static getInstance()
Get settings instance.
+ Here is the call graph for this function:

The documentation for this class was generated from the following file: