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";
8 require_once
"Services/Contact/classes/class.ilAddressbook.php";
42 $this->mlists->setCurrentMailingList(
$_GET[
'ml_id']);
44 $this->ctrl->saveParameter($this,
'mobj_id');
45 $this->ctrl->saveParameter($this,
'ref');
50 $forward_class = $this->ctrl->getNextClass($this);
51 switch ($forward_class)
54 if (!(
$cmd = $this->ctrl->getCmd()))
56 $cmd =
'showMailingLists';
75 include_once(
'Services/Utilities/classes/class.ilConfirmationGUI.php');
78 $c_gui->setFormAction($this->ctrl->getFormAction($this,
'performDelete'));
79 $c_gui->setHeaderText($this->lng->txt(
'mail_sure_delete_entry'));
80 $c_gui->setCancel($this->lng->txt(
'cancel'),
'showMailingLists');
81 $c_gui->setConfirm($this->lng->txt(
'confirm'),
'performDelete');
83 $entries = $this->mlists->getSelected($ml_ids);
84 foreach($entries as $entry)
86 $c_gui->addItem(
'ml_id[]', $entry->getId(), $entry->getTitle());
89 $this->tpl->setTitle($this->lng->txt(
'mail_addressbook'));
90 $this->tpl->addBlockFile(
'ADM_CONTENT',
'adm_content',
'tpl.mail_mailing_lists_list.html',
'Services/Contact');
91 $this->tpl->setVariable(
'DELETE_CONFIRMATION', $c_gui->getHTML());
102 if (is_array(
$_POST[
'ml_id']))
105 foreach (
$_POST[
'ml_id'] as $id)
131 include_once
"Services/Mail/classes/class.ilMail.php";
133 $mailing_allowed = $rbacsystem->checkAccess(
'internal_mail',$mail->getMailObjectReferenceId());
135 if (!$mailing_allowed)
149 $mail_data = $this->umail->getSavedData();
150 if(!is_array($mail_data))
152 $this->umail->savePostData($ilUser->getId(), array(),
'',
'',
'',
'',
'',
'',
'',
'');
156 foreach($ml_ids as $id)
159 !$this->umail->doesRecipientStillExists(
'#il_ml_'.$id, $mail_data[
'rcp_to']))
161 $lists[] =
'#il_ml_'.$id;
167 $mail_data = $this->umail->appendSearchResult($lists,
'to');
168 $this->umail->savePostData(
169 $mail_data[
'user_id'],
170 $mail_data[
'attachments'],
171 $mail_data[
'rcp_to'],
172 $mail_data[
'rcp_cc'],
173 $mail_data[
'rcp_bcc'],
174 $mail_data[
'm_type'],
175 $mail_data[
'm_email'],
176 $mail_data[
'm_subject'],
177 $mail_data[
'm_message'],
178 $mail_data[
'use_placeholders']
191 $this->tpl->setTitle($this->lng->txt(
'mail_addressbook'));
192 $this->tpl->addBlockFile(
'ADM_CONTENT',
'adm_content',
'tpl.mail_mailing_lists_list.html',
'Services/Contact');
195 include_once
"Services/Mail/classes/class.ilMail.php";
197 $mailing_allowed = $rbacsystem->checkAccess(
'internal_mail',$mail->getMailObjectReferenceId());
200 $tbl->setId(
'show_mlng_lists_tbl');
201 $tbl->setFormAction($this->ctrl->getFormAction($this),
'showForm');
202 $tbl->setTitle($this->lng->txt(
'mail_mailing_lists'));
203 $tbl->setRowTemplate(
'tpl.mail_mailing_lists_listrow.html',
'Services/Contact');
205 $tbl->setDefaultOrderField(
'title');
209 $tbl->addColumn(
'',
'check',
'10%',
true);
210 $tbl->addColumn($this->lng->txt(
'title'),
'title',
'30%');
211 $tbl->addColumn($this->lng->txt(
'description'),
'description',
'30%');
212 $tbl->addColumn($this->lng->txt(
'members'),
'members',
'20%');
213 $tbl->addColumn($this->lng->txt(
'actions'),
'',
'10%');
215 $entries = $this->mlists->getAll();
218 $tbl->enable(
'select_all');
219 $tbl->setSelectAllCheckbox(
'ml_id');
223 include_once(
"./Services/UIComponent/AdvancedSelectionList/classes/class.ilAdvancedSelectionListGUI.php");
225 foreach ($entries as $entry)
233 $result[$counter][
'title'] = $entry->getTitle() .
" [#il_ml_" . $entry->getId() .
"]";
234 $result[$counter][
'description'] = $entry->getDescription();
235 $result[$counter][
'members'] = count($entry->getAssignedEntries());
237 $this->ctrl->setParameter($this,
'ml_id', $entry->getId());
244 $current_selection_list->setListTitle($this->lng->txt(
"actions"));
245 $current_selection_list->setId(
"act_".$counter);
247 $current_selection_list->addItem($this->lng->txt(
"edit"),
'', $this->ctrl->getLinkTarget($this,
"showForm"));
248 $current_selection_list->addItem($this->lng->txt(
"members"),
'', $this->ctrl->getLinkTarget($this,
"showMembersList"));
249 if ($mailing_allowed)
250 $current_selection_list->addItem($this->lng->txt(
"send_mail_to"),
'', $this->ctrl->getLinkTarget($this,
"mailToList"));
251 $current_selection_list->addItem($this->lng->txt(
"delete"),
'', $this->ctrl->getLinkTarget($this,
"confirmDelete"));
253 $result[$counter][
'COMMAND_SELECTION_LIST'] = $current_selection_list->getHTML();
258 if ($mailing_allowed)
259 $tbl->addMultiCommand(
'mailToList', $this->lng->txt(
'send_mail_to'));
260 $tbl->addMultiCommand(
'confirmDelete', $this->lng->txt(
'delete'));
264 $tbl->disable(
'header');
265 $tbl->disable(
'footer');
267 $tbl->setNoEntriesText($this->lng->txt(
'mail_search_no'));
272 $tbl->addCommandButton(
'showForm', $this->lng->txt(
'add'));
274 if(isset(
$_GET[
'ref']) &&
$_GET[
'ref'] ==
'mail')
276 $tbl->addCommandButton(
'cancel', $this->lng->txt(
'cancel'));
279 $this->tpl->setVariable(
'MAILING_LISTS', $tbl->getHTML());
290 if(isset(
$_GET[
'ref']) &&
$_GET[
'ref'] ==
'mail')
292 $this->ctrl->returnToParent($this);
302 if($this->mlists->getCurrentMailingList()->getId())
308 $ilErr->raiseError($this->lng->txt(
'permission_denied'), $ilErr->MESSAGE);
311 $this->ctrl->setParameter($this,
'ml_id', $this->mlists->getCurrentMailingList()->getId());
319 if($this->form_gui->checkInput())
321 $this->mlists->getCurrentMailingList()->setTitle(
$_POST[
'title']);
322 $this->mlists->getCurrentMailingList()->setDescription(
$_POST[
'description']);
323 if($this->mlists->getCurrentMailingList()->getId())
325 $this->mlists->getCurrentMailingList()->setChangedate(date(
'Y-m-d H:i:s', time()));
326 $this->mlists->getCurrentMailingList()->update();
331 $this->mlists->getCurrentMailingList()->setCreatedate(date(
'Y-m-d H:i:s', time()));
332 $this->mlists->getCurrentMailingList()->insert();
333 $this->ctrl->setParameter($this,
'ml_id', $this->mlists->getCurrentMailingList()->getId());
334 $this->form_gui->setFormAction($this->ctrl->getFormAction($this,
'saveForm'));
336 $this->ctrl->setParameter($this,
'ml_id', $this->mlists->getCurrentMailingList()->getId());
337 $this->ctrl->redirect($this,
'showMembersList');
343 $this->tpl->setTitle($this->lng->txt(
'mail_addressbook'));
344 $this->tpl->addBlockFile(
'ADM_CONTENT',
'adm_content',
'tpl.mail_mailing_lists_form.html',
'Services/Contact');
346 $this->form_gui->setValuesByPost();
348 $this->tpl->setVariable(
'FORM', $this->form_gui->getHTML());
349 return $this->tpl->show();
354 include_once(
'./Services/Form/classes/class.ilPropertyFormGUI.php');
357 $this->form_gui->setFormAction($this->ctrl->getFormAction($this,
'saveForm'));
358 $this->form_gui->setTitle($this->lng->txt(
'mail_mailing_list'));
360 $titleGui =
new ilTextInputGUI($this->lng->txt(
'title'),
'title');
362 $this->form_gui->addItem($titleGui);
364 $descriptionGui =
new ilTextAreaInputGUI($this->lng->txt(
'description'),
'description');
366 $descriptionGui->setRows(8);
367 $this->form_gui->addItem($descriptionGui);
369 $this->form_gui->addCommandButton(
'saveForm',$this->lng->txt(
'save'));
370 $this->form_gui->addCommandButton(
'showMailingLists',$this->lng->txt(
'cancel'));
375 $this->form_gui->setValuesByArray(array(
376 'title' => $this->mlists->getCurrentMailingList()->getTitle(),
377 'description' => $this->mlists->getCurrentMailingList()->getDescription()
383 $this->form_gui->setValuesByArray(array(
393 $this->tpl->setTitle($this->lng->txt(
'mail_addressbook'));
394 $this->tpl->addBlockFile(
'ADM_CONTENT',
'adm_content',
'tpl.mail_mailing_lists_form.html',
'Services/Contact');
396 if($this->mlists->getCurrentMailingList()->getId())
400 $ilErr->raiseError($this->lng->txt(
'permission_denied'), $ilErr->MESSAGE);
403 $this->ctrl->setParameter($this,
'ml_id', $this->mlists->getCurrentMailingList()->getId());
413 $this->tpl->setVariable(
'FORM', $this->form_gui->getHTML());
414 return $this->tpl->show();
419 if (!$this->mlists->getCurrentMailingList()->getId())
426 $this->ctrl->setParameter($this,
'cmd',
'post');
427 $this->ctrl->setParameter($this,
'ml_id', $this->mlists->getCurrentMailingList()->getId());
429 $this->tpl->setTitle($this->lng->txt(
'mail_addressbook'));
430 $this->tpl->addBlockFile(
'ADM_CONTENT',
'adm_content',
'tpl.mail_mailing_lists_members.html',
'Services/Contact');
433 $tbl->setId(
'show_mlng_mmbrs_list_tbl');
434 $tbl->setFormAction($this->ctrl->getFormAction($this),
'showMemberForm');
435 $tbl->setTitle($this->lng->txt(
'mail_members_of_mailing_list') .
' ' .$this->mlists->getCurrentMailingList()->getTitle());
436 $tbl->setRowTemplate(
'tpl.mail_mailing_lists_membersrow.html',
'Services/Contact');
438 $this->ctrl->setParameter($this,
'cmd',
'showMembersList');
440 $tbl->setDefaultOrderField(
'title');
444 $tbl->addColumn(
'',
'check',
'10%');
445 $tbl->addColumn($this->lng->txt(
'title'),
'title',
'90%');
447 $assigned_entries = $this->mlists->getCurrentMailingList()->getAssignedEntries();
448 if (count($assigned_entries))
450 $tbl->enable(
'select_all');
451 $tbl->setSelectAllCheckbox(
'a_id');
454 foreach ($assigned_entries as $entry)
457 $result[$counter][
'title'] = ($entry[
'login'] !=
'' ? $entry[
'login'] : $entry[
'email']);
462 $tbl->addMultiCommand(
'confirmDeleteMembers', $this->lng->txt(
'delete'));
466 $tbl->disable(
'header');
467 $tbl->disable(
'footer');
469 $tbl->setNoEntriesText($this->lng->txt(
'mail_search_no'));
474 $tbl->addCommandButton(
'showAssignmentForm', $this->lng->txt(
'add'));
475 $tbl->addCommandButton(
'showMailingLists', $this->lng->txt(
'back'));
477 $this->tpl->setVariable(
'MEMBERS_LIST', $tbl->getHTML());
485 if (!isset(
$_POST[
'a_id']))
492 include_once(
'Services/Utilities/classes/class.ilConfirmationGUI.php');
494 $this->ctrl->setParameter($this,
'ml_id', $this->mlists->getCurrentMailingList()->getId());
495 $c_gui->setFormAction($this->ctrl->getFormAction($this,
'performDeleteMembers'));
496 $c_gui->setHeaderText($this->lng->txt(
'mail_sure_delete_entry'));
497 $c_gui->setCancel($this->lng->txt(
'cancel'),
'showMembersList');
498 $c_gui->setConfirm($this->lng->txt(
'confirm'),
'performDeleteMembers');
500 $assigned_entries = $this->mlists->getCurrentMailingList()->getAssignedEntries();
501 if (is_array($assigned_entries))
503 foreach ($assigned_entries as $entry)
505 if (in_array($entry[
'a_id'],
$_POST[
'a_id']))
507 $c_gui->addItem(
'a_id[]', $entry[
'a_id'], ($entry[
'login'] !=
'' ? $entry[
'login'] : $entry[
'email']));
512 $this->tpl->setTitle($this->lng->txt(
'mail_addressbook'));
513 $this->tpl->addBlockFile(
'ADM_CONTENT',
'adm_content',
'tpl.mail_mailing_lists_members.html',
'Services/Contact');
514 $this->tpl->setVariable(
'DELETE_CONFIRMATION', $c_gui->getHTML());
527 $ilErr->raiseError($this->lng->txt(
'permission_denied'), $ilErr->MESSAGE);
530 if (is_array(
$_POST[
'a_id']))
532 foreach (
$_POST[
'a_id'] as $id)
555 $ilErr->raiseError($this->lng->txt(
'permission_denied'), $ilErr->MESSAGE);
558 if (
$_POST[
'addr_id'] ==
'') $this->
setError($this->lng->txt(
'mail_entry_of_addressbook'));
564 $all_entries = $this->abook->getEntries();
565 if ((
int)count($all_entries))
567 foreach ($all_entries as $entry)
569 if($entry[
'addr_id'] ==
$_POST[
'addr_id'])
593 if ($this->
isError()) $mandatory .=
', ';
596 ilUtil::sendInfo($this->lng->txt(
'fill_out_all_required_fields') .
': ' . $mandatory);
608 if (!$this->mlists->getCurrentMailingList()->getId())
617 $ilErr->raiseError($this->lng->txt(
'permission_denied'), $ilErr->MESSAGE);
620 $this->tpl->setTitle($this->lng->txt(
'mail_addressbook'));
621 $this->tpl->addBlockFile(
'ADM_CONTENT',
'adm_content',
'tpl.mail_mailing_lists_members_form.html',
'Services/Contact');
623 include_once(
'./Services/Form/classes/class.ilPropertyFormGUI.php');
626 $this->ctrl->setParameter($this,
'ml_id', $this->mlists->getCurrentMailingList()->getId());
627 $form->setFormAction($this->ctrl->getFormAction($this,
'saveForm'));
628 $form->setTitle($this->lng->txt(
'mail_assign_entry_to_mailing_list') .
' ' . $this->mlists->getCurrentMailingList()->getTitle());
631 $options[
''] = $this->lng->txt(
'please_select');
633 $all_entries = $this->abook->getEntries();
634 if ((
int)count($all_entries))
636 foreach ($all_entries as $entry)
638 $options[$entry[
'addr_id']] = ($entry[
'login'] !=
'' ? $entry[
'login'] : $entry[
'email']);
642 $assigned_entries = $this->mlists->getCurrentMailingList()->getAssignedEntries();
643 if ((
int)count($assigned_entries))
645 foreach ($assigned_entries as $assigned_entry)
647 if (is_array(
$options) && array_key_exists($assigned_entry[
'addr_id'],
$options))
649 unset(
$options[$assigned_entry[
'addr_id']]);
656 $formItem =
new ilSelectInputGUI($this->lng->txt(
'mail_entry_of_addressbook'),
'addr_id');
658 $formItem->setValue($this->mlists->getCurrentMailingList()->getTitle());
659 $form->addItem($formItem);
661 $form->addCommandButton(
'saveAssignmentForm',$this->lng->txt(
'assign'));
663 else if(count(
$options) == 1 && (int)count($all_entries))
665 ilUtil::sendInfo($this->lng->txt(
'mail_mailing_lists_all_addressbook_entries_assigned'));
667 else if(!(
int)count($all_entries))
669 ilUtil::sendInfo($this->lng->txt(
'mail_mailing_lists_no_addressbook_entries'));
673 $form->addCommandButton(
'showMembersList',$this->lng->txt(
'cancel'));
675 $this->tpl->setVariable(
'FORM', $form->getHTML());
683 return $this->error[] = $a_error;
687 return array_pop($this->error);
691 if (is_array($this->error) && !empty($this->error))
return true;
static sendSuccess($a_info="", $a_keep=false)
Send Success Message to Screen.
static _isOwner($a_ml_id, $a_usr_id)
Mail Box class Base class for creating and handling mail boxes.
static sendInfo($a_info="", $a_keep=false)
Send Info Message to Screen.
if(!is_array($argv)) $options
Class Mail this class handles base functions for mail handling.
This class represents a text property in a property form.
setCols($a_cols)
Set Cols.
static stripSlashes($a_str, $a_strip_html=true, $a_allow="")
strip slashes if magic qoutes is enabled
static sendFailure($a_info="", $a_keep=false)
Send Failure Message to Screen.
User interface class for advanced drop-down selection lists.
This class represents a text area property in a property form.
static redirect($a_script)
http redirect to other script
initForm($a_type='create')
static formCheckbox($checked, $varname, $value, $disabled=false)
??? public
Confirmation screen class.