5 require_once
"Services/Table/classes/class.ilTable2GUI.php";
6 require_once
"Services/Contact/classes/class.ilMailingLists.php";
7 require_once
"Services/Mail/classes/class.ilFormatMail.php";
65 $this->tpl = $DIC[
'tpl'];
66 $this->ctrl = $DIC[
'ilCtrl'];
67 $this->lng = $DIC[
'lng'];
68 $this->rbacsystem = $DIC[
'rbacsystem'];
69 $this->
user = $DIC[
'ilUser'];
70 $this->error = $DIC[
'ilErr'];
71 $this->toolbar = $DIC[
'ilToolbar'];
72 $this->tabs = $DIC[
'ilTabs'];
76 $this->mlists->setCurrentMailingList(
$_GET[
'ml_id']);
78 $this->ctrl->saveParameter($this,
'mobj_id');
79 $this->ctrl->saveParameter($this,
'ref');
88 $this->error->raiseError($this->lng->txt(
'msg_no_perm_read'), $this->error->MESSAGE);
91 $forward_class = $this->ctrl->getNextClass($this);
92 switch ($forward_class) {
94 if (!($cmd = $this->ctrl->getCmd())) {
95 $cmd =
'showMailingLists';
113 include_once(
'Services/Utilities/classes/class.ilConfirmationGUI.php');
116 $c_gui->setFormAction($this->ctrl->getFormAction($this,
'performDelete'));
117 $c_gui->setHeaderText($this->lng->txt(
'mail_sure_delete_entry'));
118 $c_gui->setCancel($this->lng->txt(
'cancel'),
'showMailingLists');
119 $c_gui->setConfirm($this->lng->txt(
'confirm'),
'performDelete');
121 $entries = $this->mlists->getSelected($ml_ids);
122 foreach ($entries as $entry) {
123 $c_gui->addItem(
'ml_id[]', $entry->getId(), $entry->getTitle());
126 $this->tpl->setTitle($this->lng->txt(
'mail_addressbook'));
127 $this->tpl->addBlockFile(
'ADM_CONTENT',
'adm_content',
'tpl.mail_mailing_lists_list.html',
'Services/Contact');
128 $this->tpl->setVariable(
'DELETE_CONFIRMATION', $c_gui->getHTML());
130 $this->tpl->printToStdout();
137 if (is_array(
$_POST[
'ml_id'])) {
139 foreach (
$_POST[
'ml_id'] as $id) {
140 if (ilMailingList::_isOwner($id, $this->
user->getId())) {
161 include_once
"Services/Mail/classes/class.ilMail.php";
163 $mailing_allowed = $this->rbacsystem->checkAccess(
'internal_mail', $mail->getMailObjectReferenceId());
165 if (!$mailing_allowed) {
177 $mail_data = $this->umail->getSavedData();
178 if (!is_array($mail_data)) {
179 $this->umail->savePostData($this->
user->getId(), array(),
'',
'',
'',
'',
'',
'',
'',
'');
183 foreach ($ml_ids as $id) {
184 if (ilMailingList::_isOwner($id, $this->
user->getId()) &&
185 !$this->umail->existsRecipient(
'#il_ml_' . $id, (
string) $mail_data[
'rcp_to'])) {
186 $lists[] =
'#il_ml_' . $id;
191 $mail_data = $this->umail->appendSearchResult($lists,
'to');
192 $this->umail->savePostData(
193 $mail_data[
'user_id'],
194 $mail_data[
'attachments'],
195 $mail_data[
'rcp_to'],
196 $mail_data[
'rcp_cc'],
197 $mail_data[
'rcp_bcc'],
198 $mail_data[
'm_email'],
199 $mail_data[
'm_subject'],
200 $mail_data[
'm_message'],
201 $mail_data[
'use_placeholders'],
202 $mail_data[
'tpl_ctx_id'],
203 $mail_data[
'tpl_ctx_params']
214 $this->tpl->setTitle($this->lng->txt(
'mail_addressbook'));
215 $this->tpl->addBlockFile(
'ADM_CONTENT',
'adm_content',
'tpl.mail_mailing_lists_list.html',
'Services/Contact');
218 include_once
"Services/Mail/classes/class.ilMail.php";
220 $mailing_allowed = $this->rbacsystem->checkAccess(
'internal_mail', $mail->getMailObjectReferenceId());
222 require_once
'Services/Contact/classes/class.ilMailingListsTableGUI.php';
225 require_once
'Services/UIComponent/Button/classes/class.ilLinkButton.php';
227 $create_btn->setCaption(
'create');
228 $create_btn->setUrl($this->ctrl->getLinkTarget($this,
'showForm'));
229 $this->toolbar->addButtonInstance($create_btn);
232 $entries = $this->mlists->getAll();
233 if (count($entries)) {
234 $tbl->enable(
'select_all');
236 require_once
'Services/UIComponent/AdvancedSelectionList/classes/class.ilAdvancedSelectionListGUI.php';
238 foreach ($entries as $entry) {
244 $result[$counter][
'title'] = $entry->getTitle() .
" [#il_ml_" . $entry->getId() .
"]";
245 $result[$counter][
'description'] = $entry->getDescription();
246 $result[$counter][
'members'] = count($entry->getAssignedEntries());
248 $this->ctrl->setParameter($this,
'ml_id', $entry->getId());
251 $current_selection_list->setListTitle($this->lng->txt(
"actions"));
252 $current_selection_list->setId(
"act_" . $counter);
254 $current_selection_list->addItem($this->lng->txt(
"edit"),
'', $this->ctrl->getLinkTarget($this,
"showForm"));
255 $current_selection_list->addItem($this->lng->txt(
"members"),
'', $this->ctrl->getLinkTarget($this,
"showMembersList"));
256 if ($mailing_allowed) {
257 $current_selection_list->addItem($this->lng->txt(
"send_mail_to"),
'', $this->ctrl->getLinkTarget($this,
"mailToList"));
259 $current_selection_list->addItem($this->lng->txt(
"delete"),
'', $this->ctrl->getLinkTarget($this,
"confirmDelete"));
261 $result[$counter][
'COMMAND_SELECTION_LIST'] = $current_selection_list->getHTML();
265 if ($mailing_allowed) {
266 $tbl->addMultiCommand(
'mailToList', $this->lng->txt(
'send_mail_to'));
268 $tbl->addMultiCommand(
'confirmDelete', $this->lng->txt(
'delete'));
270 $tbl->disable(
'header');
271 $tbl->disable(
'footer');
276 if (isset(
$_GET[
'ref']) &&
$_GET[
'ref'] ==
'mail') {
277 $tbl->addCommandButton(
'cancel', $this->lng->txt(
'cancel'));
280 $this->tpl->setVariable(
'MAILING_LISTS', $tbl->getHTML());
281 $this->tpl->printToStdout();
290 if (isset(
$_GET[
'ref']) &&
$_GET[
'ref'] ==
'mail') {
291 $this->ctrl->returnToParent($this);
299 if ($this->mlists->getCurrentMailingList()->getId()) {
300 if (!ilMailingList::_isOwner($this->mlists->getCurrentMailingList()->getId(), $this->
user->getId())) {
301 $this->error->raiseError($this->lng->txt(
'permission_denied'), $this->error->MESSAGE);
304 $this->ctrl->setParameter($this,
'ml_id', $this->mlists->getCurrentMailingList()->getId());
310 if ($this->form_gui->checkInput()) {
311 $this->mlists->getCurrentMailingList()->setTitle(
$_POST[
'title']);
312 $this->mlists->getCurrentMailingList()->setDescription(
$_POST[
'description']);
313 if ($this->mlists->getCurrentMailingList()->getId()) {
314 $this->mlists->getCurrentMailingList()->setChangedate(date(
'Y-m-d H:i:s', time()));
315 $this->mlists->getCurrentMailingList()->update();
316 ilUtil::sendSuccess($this->lng->txt(
'saved_successfully'));
318 $this->mlists->getCurrentMailingList()->setCreatedate(date(
'Y-m-d H:i:s', time()));
319 $this->mlists->getCurrentMailingList()->insert();
320 $this->ctrl->setParameter($this,
'ml_id', $this->mlists->getCurrentMailingList()->getId());
321 $this->form_gui->setFormAction($this->ctrl->getFormAction($this,
'saveForm'));
323 $this->ctrl->setParameter($this,
'ml_id', $this->mlists->getCurrentMailingList()->getId());
324 $this->ctrl->redirect($this,
'showMembersList');
330 $this->tpl->setTitle($this->lng->txt(
'mail_addressbook'));
331 $this->tpl->addBlockFile(
'ADM_CONTENT',
'adm_content',
'tpl.mail_mailing_lists_form.html',
'Services/Contact');
333 $this->form_gui->setValuesByPost();
335 $this->tpl->setVariable(
'FORM', $this->form_gui->getHTML());
336 return $this->tpl->printToStdout();
341 include_once(
'./Services/Form/classes/class.ilPropertyFormGUI.php');
344 $this->form_gui->setFormAction($this->ctrl->getFormAction($this,
'saveForm'));
345 $this->form_gui->setTitle($this->lng->txt(
'mail_mailing_list'));
347 $titleGui =
new ilTextInputGUI($this->lng->txt(
'title'),
'title');
348 $titleGui->setRequired(
true);
349 $this->form_gui->addItem($titleGui);
351 $descriptionGui =
new ilTextAreaInputGUI($this->lng->txt(
'description'),
'description');
353 $descriptionGui->setRows(8);
354 $this->form_gui->addItem($descriptionGui);
356 $this->form_gui->addCommandButton(
'saveForm', $this->lng->txt(
'save'));
357 $this->form_gui->addCommandButton(
'showMailingLists', $this->lng->txt(
'cancel'));
362 $this->form_gui->setValuesByArray(array(
363 'title' => $this->mlists->getCurrentMailingList()->getTitle(),
364 'description' => $this->mlists->getCurrentMailingList()->getDescription()
370 $this->form_gui->setValuesByArray(array(
378 $this->tpl->setTitle($this->lng->txt(
'mail_addressbook'));
379 $this->tpl->addBlockFile(
'ADM_CONTENT',
'adm_content',
'tpl.mail_mailing_lists_form.html',
'Services/Contact');
381 if ($this->mlists->getCurrentMailingList()->getId()) {
382 if (!ilMailingList::_isOwner($this->mlists->getCurrentMailingList()->getId(), $this->
user->getId())) {
383 $this->error->raiseError($this->lng->txt(
'permission_denied'), $this->error->MESSAGE);
386 $this->ctrl->setParameter($this,
'ml_id', $this->mlists->getCurrentMailingList()->getId());
394 $this->tpl->setVariable(
'FORM', $this->form_gui->getHTML());
395 return $this->tpl->printToStdout();
400 if (!$this->mlists->getCurrentMailingList()->getId()) {
405 $this->ctrl->setParameter($this,
'cmd',
'post');
406 $this->ctrl->setParameter($this,
'ml_id', $this->mlists->getCurrentMailingList()->getId());
408 $this->tpl->setTitle($this->lng->txt(
'mail_addressbook'));
409 $this->tpl->addBlockFile(
'ADM_CONTENT',
'adm_content',
'tpl.mail_mailing_lists_members.html',
'Services/Contact');
411 require_once
'Services/Contact/classes/class.ilMailingListsMembersTableGUI.php';
415 require_once
'Services/UIComponent/Button/classes/class.ilLinkButton.php';
417 $create_btn->setCaption(
'add');
418 $create_btn->setUrl($this->ctrl->getLinkTarget($this,
'showAssignmentForm'));
419 $this->toolbar->addButtonInstance($create_btn);
421 $assigned_entries = $this->mlists->getCurrentMailingList()->getAssignedEntries();
422 if (count($assigned_entries)) {
423 $tbl->enable(
'select_all');
424 $tbl->setSelectAllCheckbox(
'a_id');
427 foreach ($assigned_entries as $entry) {
428 $usr_ids[] = $entry[
'usr_id'];
431 require_once
'Services/User/classes/class.ilUserUtil.php';
435 foreach ($assigned_entries as $entry) {
437 $result[$counter][
'user'] = $names[$entry[
'usr_id']];
441 $tbl->
addMultiCommand(
'confirmDeleteMembers', $this->lng->txt(
'delete'));
443 $tbl->disable(
'header');
444 $tbl->disable(
'footer');
446 $tbl->setNoEntriesText($this->lng->txt(
'mail_search_no'));
449 $tbl->setData($result);
451 $this->tpl->setVariable(
'MEMBERS_LIST', $tbl->getHTML());
452 $this->tpl->printToStdout();
458 if (!isset(
$_POST[
'a_id'])) {
464 include_once(
'Services/Utilities/classes/class.ilConfirmationGUI.php');
466 $this->ctrl->setParameter($this,
'ml_id', $this->mlists->getCurrentMailingList()->getId());
467 $c_gui->setFormAction($this->ctrl->getFormAction($this,
'performDeleteMembers'));
468 $c_gui->setHeaderText($this->lng->txt(
'mail_sure_delete_entry'));
469 $c_gui->setCancel($this->lng->txt(
'cancel'),
'showMembersList');
470 $c_gui->setConfirm($this->lng->txt(
'confirm'),
'performDeleteMembers');
472 $assigned_entries = $this->mlists->getCurrentMailingList()->getAssignedEntries();
475 foreach ($assigned_entries as $entry) {
476 $usr_ids[] = $entry[
'usr_id'];
479 require_once
'Services/User/classes/class.ilUserUtil.php';
482 foreach ($assigned_entries as $entry) {
483 if (in_array($entry[
'a_id'],
$_POST[
'a_id'])) {
484 $c_gui->addItem(
'a_id[]', $entry[
'a_id'], $names[$entry[
'usr_id']]);
488 $this->tpl->setTitle($this->lng->txt(
'mail_addressbook'));
489 $this->tpl->addBlockFile(
'ADM_CONTENT',
'adm_content',
'tpl.mail_mailing_lists_members.html',
'Services/Contact');
490 $this->tpl->setVariable(
'DELETE_CONFIRMATION', $c_gui->getHTML());
492 $this->tpl->printToStdout();
498 if (!ilMailingList::_isOwner($this->mlists->getCurrentMailingList()->getId(), $this->
user->getId())) {
499 $this->error->raiseError($this->lng->txt(
'permission_denied'), $this->error->MESSAGE);
502 if (is_array(
$_POST[
'a_id'])) {
503 $assigned_entries = $this->mlists->getCurrentMailingList()->getAssignedEntries();
504 foreach (
$_POST[
'a_id'] as $id) {
505 if (isset($assigned_entries[$id])) {
506 $this->mlists->getCurrentMailingList()->deleteEntry((
int) $id);
522 protected function getAssignmentForm()
524 require_once
'Services/Form/classes/class.ilPropertyFormGUI.php';
526 $this->ctrl->setParameter($this,
'ml_id', $this->mlists->getCurrentMailingList()->getId());
527 $form->setFormAction($this->ctrl->getFormAction($this,
'saveAssignmentForm'));
528 $form->setTitle($this->lng->txt(
'mail_assign_entry_to_mailing_list') .
' ' . $this->mlists->getCurrentMailingList()->getTitle());
531 $options[
''] = $this->lng->txt(
'please_select');
533 require_once
'Services/Contact/BuddySystem/classes/class.ilBuddyList.php';
534 require_once
'Services/User/classes/class.ilUserUtil.php';
537 foreach ($relations as $relation) {
541 $options[$relation->getBuddyUsrId()] = $names[$relation->getBuddyUsrId()];
544 $assigned_entries = $this->mlists->getCurrentMailingList()->getAssignedEntries();
545 if (count($assigned_entries)) {
546 foreach ($assigned_entries as $assigned_entry) {
547 if (is_array($options) && array_key_exists($assigned_entry[
'usr_id'], $options)) {
548 unset($options[$assigned_entry[
'usr_id']]);
553 if (count($options) > 1) {
554 $formItem =
new ilSelectInputGUI($this->lng->txt(
'mail_entry_of_contacts'),
'usr_id');
555 $formItem->setRequired(
true);
556 $formItem->setOptions($options);
557 $form->addItem($formItem);
559 $form->addCommandButton(
'saveAssignmentForm', $this->lng->txt(
'assign'));
560 } elseif (count($options) == 1 && count($relations)) {
561 ilUtil::sendInfo($this->lng->txt(
'mail_mailing_lists_all_contact_entries_assigned'));
562 } elseif (count($relations) == 0) {
565 $form->addCommandButton(
'showMembersList', $this->lng->txt(
'cancel'));
575 if (!ilMailingList::_isOwner($this->mlists->getCurrentMailingList()->getId(), $this->
user->getId())) {
576 $this->error->raiseError($this->lng->txt(
'permission_denied'), $this->error->MESSAGE);
579 $form = $this->getAssignmentForm();
580 if (!$form->checkInput()) {
581 $form->setValuesByPost();
586 require_once
'Services/Contact/BuddySystem/classes/class.ilBuddyList.php';
588 $this->mlists->getCurrentMailingList()->assignUser((
int) $_POST[
'usr_id']);
604 if (!$this->mlists->getCurrentMailingList()->getId()) {
609 if (!ilMailingList::_isOwner($this->mlists->getCurrentMailingList()->getId(), $this->
user->getId())) {
610 $this->error->raiseError($this->lng->txt(
'permission_denied'), $this->error->MESSAGE);
613 $this->tpl->setTitle($this->lng->txt(
'mail_addressbook'));
614 $this->tpl->addBlockFile(
'ADM_CONTENT',
'adm_content',
'tpl.mail_mailing_lists_members_form.html',
'Services/Contact');
617 $form = $this->getAssignmentForm();
620 $this->tpl->setVariable(
'FORM', $form->getHTML());
621 $this->tpl->printToStdout();
static getInstanceByGlobalUser()
static sendInfo($a_info="", $a_keep=false)
Send Info Message to Screen.
addMultiCommand($a_cmd, $a_text)
Add Command button.
setCols($a_cols)
Set Cols.
static stripSlashes($a_str, $a_strip_html=true, $a_allow="")
strip slashes if magic qoutes is enabled
static getNamePresentation( $a_user_id, $a_user_image=false, $a_profile_link=false, $a_profile_back_link="", $a_force_first_lastname=false, $a_omit_login=false, $a_sortable=true, $a_return_data_array=false, $a_ctrl_path="ilpublicuserprofilegui")
Default behaviour is:
static sendFailure($a_info="", $a_keep=false)
Send Failure Message to Screen.
showAssignmentForm(ilPropertyFormGUI $form=null)
This class represents a text area property in a property form.
static redirect($a_script)
initForm($a_type='create')
static formCheckbox($checked, $varname, $value, $disabled=false)
??? public
Confirmation screen class.