4 include_once
'./Services/Table/classes/class.ilTable2GUI.php';
29 public function __construct($a_parent_type, $a_parent_obj_id = 0)
33 $this->parent_type = $a_parent_type;
34 $this->parent_obj_id = $a_parent_obj_id;
36 $this->ctrl =
$GLOBALS[
'DIC'][
'ilCtrl'];
38 $this->lng->loadLanguageModule(
'crs');
39 $this->lng->loadLanguageModule(
'mem');
57 $next_class = $this->ctrl->getNextClass($this);
58 $cmd = $this->ctrl->getCmd(
'printViewSettings');
61 switch ($next_class) {
76 $form = $this->
initForm(self::TYPE_PRINT_VIEW_SETTINGS);
79 $GLOBALS[
'DIC'][
'tpl']->setContent($form->getHTML());
87 include_once
'./Services/Form/classes/class.ilPropertyFormGUI.php';
89 $form->setFormAction($this->ctrl->getFormAction($this));
90 $form->setTitle($this->
getLang()->txt(
'mem_' .
$a_type .
'_form'));
93 $fields[
'name'] =
$GLOBALS[
'DIC'][
'lng']->txt(
'name');
94 $fields[
'login'] =
$GLOBALS[
'DIC'][
'lng']->txt(
'login');
95 $fields[
'email'] =
$GLOBALS[
'DIC'][
'lng']->txt(
'email');
97 include_once(
'Services/PrivacySecurity/classes/class.ilPrivacySettings.php');
98 include_once
'Services/PrivacySecurity/classes/class.ilExportFieldsInfo.php';
99 include_once(
'Modules/Course/classes/Export/class.ilCourseDefinedFieldDefinition.php');
100 include_once(
'Services/User/classes/class.ilUserDefinedFields.php');
103 $field_info->sortExportFields();
105 foreach ($field_info->getExportableFields() as $field) {
115 $fields[$field] =
$GLOBALS[
'DIC'][
'lng']->txt($field);
120 include_once
'./Services/User/classes/class.ilUserDefinedFields.php';
122 $exportable = array();
123 if ($this->parent_type ==
'crs') {
124 $exportable = $udf->getCourseExportableFields();
125 } elseif ($this->parent_type ==
'grp') {
126 $exportable = $udf->getGroupExportableFields();
128 foreach ((array) $exportable as $field_id => $udf_data) {
129 $fields[
'udf_' . $field_id] = $udf_data[
'field_name'];
134 foreach ($fields as $id =>
$name) {
137 $form->addItem($ufields);
140 include_once
'./Services/PrivacySecurity/classes/class.ilPrivacySettings.php';
142 if ($this->parent_type ==
'crs') {
143 if ($privacy->enabledCourseAccessTimes()) {
147 if ($this->parent_type ==
'grp') {
148 if ($privacy->enabledGroupAccessTimes()) {
157 $blank->setMulti(
true);
158 $form->addItem($blank);
163 if ($this->parent_type ==
'crs') {
168 if (!$this->parent_obj_id) {
170 $roles->addOption($subscriber);
172 $waiting_list =
new ilCheckboxOption(
$GLOBALS[
'DIC'][
'lng']->txt(
'event_user_selection_include_waiting_list'),
'wlist');
173 $roles->addOption($waiting_list);
175 $form->addItem($roles);
178 case self::TYPE_PRINT_VIEW_SETTINGS:
179 if ($this->dic->rbac()->system()->checkAccess(
'write',
$_GET[
'ref_id'])) {
180 $form->addCommandButton(
'savePrintViewSettings', $this->
getLang()->txt(
'save'));
185 include_once
"Services/User/classes/class.ilUserFormSettings.php";
186 $identifier = $this->parent_type .
's_pview';
187 if ($this->parent_obj_id) {
192 if (!$settings->hasStoredEntry()) {
196 $settings->exportToForm($form);
206 $form = $this->
initForm(self::TYPE_PRINT_VIEW_SETTINGS);
207 if ($form->checkInput()) {
208 $form->setValuesByPost();
213 $identifier = $this->parent_type .
's_pview';
214 if ($this->parent_obj_id) {
219 $settings->importFromForm($form);
222 ilUtil::sendSuccess(
$GLOBALS[
'DIC'][
'lng']->txt(
'settings_saved'),
true);
223 $GLOBALS[
'DIC'][
'ilCtrl']->redirect($this,
'printViewSettings');
__construct($a_parent_type, $a_parent_obj_id=0)
Constructor.
const TYPE_PRINT_VIEW_SETTINGS
executeCommand()
Execute command.
savePrintViewSettings()
Save print view settings.
This class represents an option in a checkbox group.
static _getInstance()
Get instance.
initForm($a_type)
init settings form
printViewSettings(ilPropertyFormGUI $form=null)
Show print view settings.
const TYPE_PRINT_VIEW_MEMBERS
static _getInstanceByType($a_type)
Get Singleton Instance.
if(!defined('PATH_SEPARATOR')) $GLOBALS['_PEAR_default_error_mode']
const TYPE_EXPORT_SETTINGS
static _getInstance()
Get instance of ilPrivacySettings.