123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827 |
- <?php
- /* For licensing terms, see /license.txt */
- /**
- * @author Frederik Vermeire <frederik.vermeire@pandora.be>, UGent Internship
- * @author Patrick Cool <patrick.cool@UGent.be>, Ghent University: code cleaning
- * @author Julio Montoya <gugli100@gmail.com>, MORE code cleaning 2011
- *
- * @abstract The task of the internship was to integrate the 'send messages to specific users' with the
- * Announcements tool and also add the resource linker here. The database also needed refactoring
- * as there was no title field (the title was merged into the content field)
- *
- * @package chamilo.announcements
- * multiple functions
- */
- // use anonymous mode when accessing this course tool
- $use_anonymous = true;
- require_once __DIR__.'/../inc/global.inc.php';
- api_protect_course_script(true);
- api_protect_course_group(GroupManager::GROUP_TOOL_ANNOUNCEMENT);
- $token = Security::get_existing_token();
- $courseId = api_get_course_int_id();
- $_course = api_get_course_info_by_id($courseId);
- $group_id = api_get_group_id();
- $sessionId = api_get_session_id();
- $current_course_tool = TOOL_ANNOUNCEMENT;
- $this_section = SECTION_COURSES;
- $nameTools = get_lang('ToolAnnouncement');
- $allowToEdit = (
- api_is_allowed_to_edit(false, true) ||
- (api_get_course_setting('allow_user_edit_announcement') && !api_is_anonymous())
- );
- $allowStudentInGroupToSend = false;
- $sessionId = api_get_session_id();
- $drhHasAccessToSessionContent = api_drh_can_access_all_session_content();
- if (!empty($sessionId) && $drhHasAccessToSessionContent) {
- $allowToEdit = $allowToEdit || api_is_drh();
- }
- // Configuration settings
- $display_announcement_list = true;
- $display_form = false;
- $display_title_list = true;
- // Maximum title messages to display
- $maximum = '12';
- // Length of the titles
- $length = '36';
- // Database Table Definitions
- $tbl_courses = Database::get_main_table(TABLE_MAIN_COURSE);
- $tbl_sessions = Database::get_main_table(TABLE_MAIN_SESSION);
- $tbl_announcement = Database::get_course_table(TABLE_ANNOUNCEMENT);
- $tbl_item_property = Database::get_course_table(TABLE_ITEM_PROPERTY);
- $isTutor = false;
- if (!empty($group_id)) {
- $groupProperties = GroupManager::get_group_properties($group_id);
- $interbreadcrumb[] = [
- 'url' => api_get_path(WEB_CODE_PATH).'group/group.php?'.api_get_cidreq(),
- 'name' => get_lang('Groups'),
- ];
- $interbreadcrumb[] = [
- 'url' => api_get_path(WEB_CODE_PATH).'group/group_space.php?'.api_get_cidreq(),
- 'name' => get_lang('GroupSpace').' '.$groupProperties['name'],
- ];
- if ($allowToEdit === false) {
- // Check if user is tutor group
- $isTutor = GroupManager::is_tutor_of_group(api_get_user_id(), $groupProperties, $courseId);
- if ($isTutor) {
- $allowToEdit = true;
- }
- // Last chance ... students can send announcements
- if ($groupProperties['announcements_state'] == GroupManager::TOOL_PRIVATE_BETWEEN_USERS) {
- $allowStudentInGroupToSend = true;
- }
- }
- }
- Event::event_access_tool(TOOL_ANNOUNCEMENT);
- $announcement_id = isset($_GET['id']) ? (int) $_GET['id'] : null;
- $action = isset($_GET['action']) ? Security::remove_XSS($_GET['action']) : 'list';
- $announcement_number = AnnouncementManager::getNumberAnnouncements();
- $homeUrl = api_get_self().'?action=list&'.api_get_cidreq();
- $content = '';
- $searchFormToString = '';
- $logInfo = [
- 'tool' => TOOL_ANNOUNCEMENT,
- 'tool_id' => 0,
- 'tool_id_detail' => 0,
- 'action' => $action,
- ];
- Event::registerLog($logInfo);
- switch ($action) {
- case 'move':
- if (!$allowToEdit) {
- api_not_allowed(true);
- }
- /* Move announcement up/down */
- if (!empty($_GET['down'])) {
- $thisAnnouncementId = intval($_GET['down']);
- $sortDirection = "DESC";
- }
- if (!empty($_GET['up'])) {
- $thisAnnouncementId = intval($_GET['up']);
- $sortDirection = "ASC";
- }
- if (!empty($sortDirection)) {
- if (!in_array(trim(strtoupper($sortDirection)), ['ASC', 'DESC'])) {
- $sortDirection = 'ASC';
- }
- $announcementInfo = AnnouncementManager::get_by_id($courseId, $thisAnnouncementId);
- $sql = "SELECT DISTINCT announcement.id, announcement.display_order
- FROM $tbl_announcement announcement
- INNER JOIN $tbl_item_property itemproperty
- ON (announcement.c_id = itemproperty.c_id)
- WHERE
- announcement.c_id = $courseId AND
- itemproperty.c_id = $courseId AND
- itemproperty.ref = announcement.id AND
- itemproperty.tool = '".TOOL_ANNOUNCEMENT."' AND
- itemproperty.visibility <> 2
- ORDER BY display_order $sortDirection";
- $result = Database::query($sql);
- $thisAnnouncementOrderFound = false;
- $thisAnnouncementOrder = null;
- while (list($announcementId, $announcementOrder) = Database::fetch_row($result)) {
- if ($thisAnnouncementOrderFound) {
- $nextAnnouncementId = $announcementId;
- $nextAnnouncementOrder = $announcementOrder;
- $sql = "UPDATE $tbl_announcement SET display_order = '$nextAnnouncementOrder'
- WHERE c_id = $courseId AND id = $thisAnnouncementId";
- Database::query($sql);
- $sql = "UPDATE $tbl_announcement SET display_order = '$thisAnnouncementOrder'
- WHERE c_id = $courseId AND id = $nextAnnouncementId";
- Database::query($sql);
- break;
- }
- // STEP 1 : FIND THE ORDER OF THE ANNOUNCEMENT
- if ($announcementId == $thisAnnouncementId) {
- $thisAnnouncementOrder = $announcementOrder;
- $thisAnnouncementOrderFound = true;
- }
- }
- Display::addFlash(Display::return_message(get_lang('AnnouncementMoved')));
- header('Location: '.$homeUrl);
- exit;
- }
- break;
- case 'view':
- $interbreadcrumb[] = [
- 'url' => api_get_path(WEB_CODE_PATH).'announcements/announcements.php?'.api_get_cidreq(),
- 'name' => $nameTools,
- ];
- $nameTools = get_lang('View');
- $content = AnnouncementManager::displayAnnouncement($announcement_id);
- if (empty($content)) {
- api_not_allowed(true);
- }
- break;
- case 'list':
- $htmlHeadXtra[] = api_get_jqgrid_js();
- $searchForm = new FormValidator(
- 'search_simple',
- 'post',
- api_get_self().'?'.api_get_cidreq(),
- '',
- [],
- FormValidator::LAYOUT_INLINE
- );
- $searchForm->addElement('text', 'keyword', get_lang('Title'));
- $users = CourseManager::get_user_list_from_course_code(api_get_course_id(), $sessionId);
- $userList = ['' => ''];
- if (!empty($users)) {
- foreach ($users as $user) {
- $userList[$user['user_id']] = api_get_person_name($user['firstname'], $user['lastname']);
- }
- }
- $users = [];
- $searchForm->addElement('select', 'user_id', get_lang('Users'), $userList);
- $searchForm->addButtonSearch(get_lang('Search'));
- $filterData = [];
- $keyword = '';
- $userIdToSearch = 0;
- if ($searchForm->validate()) {
- $filterData = $searchForm->getSubmitValues();
- $keyword = $filterData['keyword'];
- $userIdToSearch = $filterData['user_id'];
- }
- // jqgrid will use this URL to do the selects
- $url = api_get_path(WEB_AJAX_PATH).'model.ajax.php?a=get_course_announcements&'.api_get_cidreq().'&title_to_search='.$keyword.'&user_id_to_search='.$userIdToSearch;
- $deleteUrl = api_get_path(WEB_AJAX_PATH).'announcement.ajax.php?a=delete_item&'.api_get_cidreq();
- $columns = [
- get_lang('Title'),
- get_lang('By'),
- get_lang('LastUpdateDate'),
- get_lang('Actions'),
- ];
- // Column config
- $columnModel = [
- [
- 'name' => 'title',
- 'index' => 'title',
- 'width' => '300',
- 'align' => 'left',
- 'sortable' => 'false',
- ],
- [
- 'name' => 'username',
- 'index' => 'username',
- 'width' => '100',
- 'align' => 'left',
- 'sortable' => 'false',
- ],
- [
- 'name' => 'lastedit_date',
- 'index' => 'lastedit_date',
- 'width' => '200',
- 'align' => 'left',
- 'sortable' => 'false',
- ],
- [
- 'name' => 'actions',
- 'index' => 'actions',
- 'width' => '150',
- 'align' => 'left',
- //'formatter' => 'action_formatter',
- 'sortable' => 'false',
- ],
- ];
- // Autowidth
- $extra_params['autowidth'] = 'true';
- // height auto
- $extra_params['height'] = 'auto';
- $editOptions = '';
- if ($isTutor || api_is_allowed_to_edit()) {
- $extra_params['multiselect'] = true;
- $editOptions = '
- $("#announcements").jqGrid(
- "navGrid",
- "#announcements_pager",
- { edit: false, add: false, del: true },
- { height:280, reloadAfterSubmit:false }, // edit options
- { height:280, reloadAfterSubmit:false }, // add options
- { reloadAfterSubmit:false, url: "'.$deleteUrl.'" }, // del options
- { width:500 } // search options
- );
- ';
- }
- $content = '<script>
- $(function() {'.
- Display::grid_js(
- 'announcements',
- $url,
- $columns,
- $columnModel,
- $extra_params,
- [],
- '',
- true
- ).$editOptions.'
- });
- </script>';
- $count = AnnouncementManager::getAnnouncements(
- $token,
- $announcement_number,
- true
- );
- if (empty($count)) {
- $html = '';
- if (($allowToEdit || $allowStudentInGroupToSend) &&
- (empty($_GET['origin']) || $_GET['origin'] !== 'learnpath')
- ) {
- $html .= '<div id="no-data-view">';
- $html .= '<h3>'.get_lang('Announcements').'</h3>';
- $html .= Display::return_icon('valves.png', '', [], 64);
- $html .= '<div class="controls">';
- $html .= Display::url(
- get_lang('AddAnnouncement'),
- api_get_self()."?".api_get_cidreq()."&action=add",
- ['class' => 'btn btn-primary']
- );
- $html .= '</div>';
- $html .= '</div>';
- } else {
- $html = Display::return_message(get_lang('NoAnnouncements'), 'warning');
- }
- $content = $html;
- } else {
- $content .= Display::grid_html('announcements');
- }
- break;
- case 'delete':
- /* Delete announcement */
- $id = intval($_GET['id']);
- if ($sessionId != 0 && api_is_allowed_to_session_edit(false, true) == false) {
- api_not_allowed();
- }
- $delete = false;
- if (api_is_platform_admin()) {
- $delete = true;
- }
- if (!api_is_session_general_coach() || api_is_element_in_the_session(TOOL_ANNOUNCEMENT, $id)) {
- $delete = true;
- }
- if ($delete) {
- AnnouncementManager::delete_announcement($_course, $id);
- Display::addFlash(Display::return_message(get_lang('AnnouncementDeleted')));
- }
- header('Location: '.$homeUrl);
- exit;
- break;
- case 'delete_all':
- if (api_is_allowed_to_edit()) {
- $allow = api_get_configuration_value('disable_delete_all_announcements');
- if ($allow === false) {
- AnnouncementManager::delete_all_announcements($_course);
- Display::addFlash(Display::return_message(get_lang('AnnouncementDeletedAll')));
- }
- header('Location: '.$homeUrl);
- exit;
- }
- break;
- case 'delete_attachment':
- $id = (int) $_GET['id_attach'];
- if (api_is_allowed_to_edit()) {
- AnnouncementManager::delete_announcement_attachment_file($id);
- }
- header('Location: '.$homeUrl);
- exit;
- break;
- case 'showhide':
- if (!isset($_GET['isStudentView']) || $_GET['isStudentView'] != 'false') {
- if (isset($_GET['id']) && $_GET['id']) {
- if ($sessionId != 0 &&
- api_is_allowed_to_session_edit(false, true) == false
- ) {
- api_not_allowed();
- }
- if (!$allowToEdit) {
- api_not_allowed(true);
- }
- if (!api_is_session_general_coach() ||
- api_is_element_in_the_session(TOOL_ANNOUNCEMENT, $_GET['id'])
- ) {
- AnnouncementManager::change_visibility_announcement(
- $_course,
- $_GET['id']
- );
- Display::addFlash(Display::return_message(get_lang('VisibilityChanged')));
- header('Location: '.$homeUrl);
- exit;
- }
- }
- }
- break;
- case 'add':
- case 'modify':
- if ($sessionId != 0 &&
- api_is_allowed_to_session_edit(false, true) == false
- ) {
- api_not_allowed(true);
- }
- if ($allowStudentInGroupToSend === false) {
- if (!$allowToEdit) {
- api_not_allowed(true);
- }
- }
- // DISPLAY ADD ANNOUNCEMENT COMMAND
- $id = isset($_GET['id']) ? (int) $_GET['id'] : 0;
- $url = api_get_self().'?action='.$action.'&id='.$id.'&'.api_get_cidreq();
- $form = new FormValidator(
- 'announcement',
- 'post',
- $url,
- null,
- ['enctype' => 'multipart/form-data']
- );
- $form_name = get_lang('ModifyAnnouncement');
- if (empty($id)) {
- $form_name = get_lang('AddAnnouncement');
- }
- $interbreadcrumb[] = [
- 'url' => api_get_path(WEB_CODE_PATH).'announcements/announcements.php?'.api_get_cidreq(),
- 'name' => $nameTools,
- ];
- $nameTools = $form_name;
- $form->addHeader($form_name);
- $form->addButtonAdvancedSettings(
- 'choose_recipients',
- [get_lang('ChooseRecipients')]
- );
- $form->addHtml('<div id="choose_recipients_options" style="display:none;">');
- $to = [];
- if (empty($group_id)) {
- if (isset($_GET['remind_inactive'])) {
- $email_ann = '1';
- $content_to_modify = sprintf(
- get_lang('RemindInactiveLearnersMailContent'),
- api_get_setting('siteName'),
- 7
- );
- $title_to_modify = sprintf(
- get_lang('RemindInactiveLearnersMailSubject'),
- api_get_setting('siteName')
- );
- } elseif (isset($_GET['remindallinactives']) && $_GET['remindallinactives'] === 'true') {
- // we want to remind inactive users. The $_GET['since'] parameter
- // determines which users have to be warned (i.e the users who have been inactive for x days or more
- $since = isset($_GET['since']) ? (int) $_GET['since'] : 6;
- // Getting the users who have to be reminded
- $to = Tracking::getInactiveStudentsInCourse(
- api_get_course_int_id(),
- $since,
- $sessionId
- );
- // setting the variables for the form elements: the users who need to receive the message
- foreach ($to as &$user) {
- $user = 'USER:'.$user;
- }
- // setting the variables for the form elements: the message has to be sent by email
- $email_ann = '1';
- // setting the variables for the form elements: the title of the email
- $title_to_modify = sprintf(
- get_lang('RemindInactiveLearnersMailSubject'),
- api_get_setting('siteName')
- );
- // setting the variables for the form elements: the message of the email
- $content_to_modify = sprintf(
- get_lang('RemindInactiveLearnersMailContent'),
- api_get_setting('siteName'),
- $since
- );
- // when we want to remind the users who have never been active
- // then we have a different subject and content for the announcement
- if ($_GET['since'] === 'never') {
- $title_to_modify = sprintf(
- get_lang('RemindInactiveLearnersMailSubject'),
- api_get_setting('siteName')
- );
- $content_to_modify = get_lang(
- 'YourAccountIsActiveYouCanLoginAndCheckYourCourses'
- );
- }
- }
- $element = CourseManager::addUserGroupMultiSelect($form, []);
- } else {
- $element = CourseManager::addGroupMultiSelect($form, $groupProperties, []);
- }
- $form->addHtml('</div>');
- $form->addCheckBox('email_ann', '', get_lang('EmailOption'));
- if (!isset($announcement_to_modify)) {
- $announcement_to_modify = '';
- }
- $announcementInfo = [];
- if (!empty($id)) {
- $announcementInfo = AnnouncementManager::get_by_id($courseId, $id);
- }
- $showSubmitButton = true;
- if (!empty($announcementInfo)) {
- $to = AnnouncementManager::loadEditUsers('announcement', $id);
- if (!empty($group_id)) {
- $separated = CourseManager::separateUsersGroups($to);
- if (isset($separated['groups']) && count($separated['groups']) > 1) {
- $form->freeze();
- Display::addFlash(Display::return_message(get_lang('LockByTeacher')));
- $showSubmitButton = false;
- }
- }
- $defaults = [
- 'title' => $announcementInfo['title'],
- 'content' => $announcementInfo['content'],
- 'id' => $announcementInfo['id'],
- 'users' => $to,
- ];
- } else {
- $defaults = [];
- if (!empty($to)) {
- $defaults['users'] = $to;
- }
- }
- $ajaxUrl = api_get_path(WEB_AJAX_PATH).'announcement.ajax.php?'.api_get_cidreq().'&a=preview';
- $form->addHtml("
- <script>
- $(function () {
- $('#announcement_preview').on('click', function() {
- var users = [];
- $('#users_to option').each(function() {
- users.push($(this).val());
- });
-
- var form = $('#announcement').serialize();
- $.ajax({
- type: 'POST',
- dataType: 'json',
- url: '".$ajaxUrl."',
- data: {users : JSON.stringify(users), form: form},
- beforeSend: function() {
- $('#announcement_preview_result').html('<i class=\"fa fa-spinner\"></i>');
- $('#send_button').hide();
- },
- success: function(result) {
- var resultToString = '';
- $.each(result, function(index, value) {
- resultToString += ' ' + value;
- });
- $('#announcement_preview_result').html('' +
- '".addslashes(get_lang('AnnouncementWillBeSentTo'))."<br/>' + resultToString
- );
- $('#announcement_preview_result').show();
- $('#send_button').show();
- }
- });
- });
- });
- </script>
- ");
- if (isset($defaults['users'])) {
- foreach ($defaults['users'] as $value) {
- $parts = explode(':', $value);
- if (!isset($parts[1]) || empty($parts[1])) {
- continue;
- }
- $form->addHtml(
- "
- <script>
- $(function () {
- $('#choose_recipients').click();
- });
- </script>
- ");
- break;
- }
- }
- $defaults['email_ann'] = true;
- $form->addElement(
- 'text',
- 'title',
- get_lang('EmailTitle'),
- ['onkeypress' => 'return event.keyCode != 13;']
- );
- $form->addRule('title', get_lang('ThisFieldIsRequired'), 'required');
- $form->addElement('hidden', 'id');
- $htmlTags = '';
- $tags = AnnouncementManager::getTags();
- foreach ($tags as $tag) {
- $htmlTags .= "<b>$tag</b><br />";
- }
- $form->addButtonAdvancedSettings('tags', get_lang('Tags'));
- $form->addElement('html', '<div id="tags_options" style="display:none">');
- $form->addLabel('', Display::return_message($htmlTags, 'normal', false));
- $form->addElement('html', '</div>');
- $form->addHtmlEditor(
- 'content',
- get_lang('Description'),
- true,
- false,
- ['ToolbarSet' => 'Announcements']
- );
- $form->addElement('file', 'user_upload', get_lang('AddAnAttachment'));
- $form->addElement('textarea', 'file_comment', get_lang('FileComment'));
- $form->addHidden('sec_token', $token);
- if (empty($sessionId)) {
- $form->addCheckBox('send_to_users_in_session', null, get_lang('SendToUsersInSessions'));
- }
- $config = api_get_configuration_value('announcements_hide_send_to_hrm_users');
- if ($config === false) {
- $form->addCheckBox(
- 'send_to_hrm_users',
- null,
- get_lang('SendAnnouncementCopyToDRH'),
- ['id' => 'send_to_hrm_users']
- );
- }
- $form->addCheckBox('send_me_a_copy_by_email', null, get_lang('SendAnnouncementCopyToMyself'));
- $defaults['send_me_a_copy_by_email'] = true;
- if ($showSubmitButton) {
- $form->addLabel('',
- Display::url(
- get_lang('Preview'),
- 'javascript:void(0)',
- ['class' => 'btn btn-default', 'id' => 'announcement_preview']
- ).'<div id="announcement_preview_result" style="display:none"></div>'
- );
- $form->addHtml('<div id="send_button" style="display:none">');
- $form->addButtonSave(get_lang('ButtonPublishAnnouncement'));
- $form->addHtml('</div>');
- }
- $form->setDefaults($defaults);
- if ($form->validate()) {
- $data = $form->getSubmitValues();
- $data['users'] = isset($data['users']) ? $data['users'] : [];
- $sendToUsersInSession = isset($data['send_to_users_in_session']) ? true : false;
- $sendMeCopy = isset($data['send_me_a_copy_by_email']) ? true : false;
- if (isset($id) && $id) {
- // there is an Id => the announcement already exists => update mode
- if (Security::check_token('post')) {
- $file_comment = $_POST['file_comment'];
- $file = $_FILES['user_upload'];
- AnnouncementManager::edit_announcement(
- $id,
- $data['title'],
- $data['content'],
- $data['users'],
- $file,
- $file_comment,
- $sendToUsersInSession
- );
- // Send mail
- $messageSentTo = [];
- if (isset($_POST['email_ann']) && empty($_POST['onlyThoseMails'])) {
- $messageSentTo = AnnouncementManager::sendEmail(
- api_get_course_info(),
- api_get_session_id(),
- $id,
- $sendToUsersInSession,
- isset($data['send_to_hrm_users'])
- );
- }
- if ($sendMeCopy && !in_array(api_get_user_id(), $messageSentTo)) {
- $email = new AnnouncementEmail(api_get_course_info(), api_get_session_id(), $id);
- $email->sendAnnouncementEmailToMySelf();
- }
- Display::addFlash(
- Display::return_message(
- get_lang('AnnouncementModified'),
- 'success'
- )
- );
- Security::clear_token();
- header('Location: '.$homeUrl);
- exit;
- }
- } else {
- // Insert mode
- if (Security::check_token('post')) {
- $file = $_FILES['user_upload'];
- $file_comment = $data['file_comment'];
- if (empty($group_id)) {
- $insert_id = AnnouncementManager::add_announcement(
- api_get_course_info(),
- api_get_session_id(),
- $data['title'],
- $data['content'],
- $data['users'],
- $file,
- $file_comment,
- null,
- $sendToUsersInSession
- );
- } else {
- $insert_id = AnnouncementManager::addGroupAnnouncement(
- $data['title'],
- $data['content'],
- $group_id,
- $data['users'],
- $file,
- $file_comment,
- $sendToUsersInSession
- );
- }
- if ($insert_id) {
- Display::addFlash(
- Display::return_message(
- get_lang('AnnouncementAdded'),
- 'success'
- )
- );
- // Send mail
- $messageSentTo = [];
- if (isset($data['email_ann']) && $data['email_ann']) {
- $messageSentTo = AnnouncementManager::sendEmail(
- api_get_course_info(),
- api_get_session_id(),
- $insert_id,
- $sendToUsersInSession
- );
- }
- if ($sendMeCopy && !in_array(api_get_user_id(), $messageSentTo)) {
- $email = new AnnouncementEmail(api_get_course_info(), api_get_session_id(), $insert_id);
- $email->sendAnnouncementEmailToMySelf();
- }
- Security::clear_token();
- header('Location: '.$homeUrl);
- exit;
- }
- api_not_allowed(true);
- } // end condition token
- }
- }
- $content = $form->returnForm();
- break;
- }
- if (!empty($_GET['remind_inactive'])) {
- $to[] = 'USER:'.intval($_GET['remind_inactive']);
- }
- if (empty($_GET['origin']) or $_GET['origin'] !== 'learnpath') {
- // We are not in the learning path
- Display::display_header($nameTools, get_lang('Announcements'));
- }
- // Tool introduction
- if (empty($_GET['origin']) || $_GET['origin'] !== 'learnpath') {
- Display::display_introduction_section(TOOL_ANNOUNCEMENT);
- }
- // Actions
- $show_actions = false;
- $actionsLeft = '';
- if (($allowToEdit || $allowStudentInGroupToSend) && (empty($_GET['origin']) || $_GET['origin'] !== 'learnpath')) {
- if (in_array($action, ['add', 'modify', 'view'])) {
- $actionsLeft .= "<a href='".api_get_self()."?".api_get_cidreq()."'>".
- Display::return_icon('back.png', get_lang('Back'), '', ICON_SIZE_MEDIUM).
- "</a>";
- } else {
- $actionsLeft .= "<a href='".api_get_self()."?".api_get_cidreq()."&action=add'>".
- Display::return_icon('new_announce.png', get_lang('AddAnnouncement'), '', ICON_SIZE_MEDIUM).
- "</a>";
- }
- $show_actions = true;
- } else {
- if (in_array($action, ['view'])) {
- $actionsLeft .= "<a href='".api_get_self()."?".api_get_cidreq()."'>".
- Display::return_icon('back.png', get_lang('Back'), '', ICON_SIZE_MEDIUM)."</a>";
- }
- }
- if ($allowToEdit && api_get_group_id() == 0) {
- $allow = api_get_configuration_value('disable_delete_all_announcements');
- if ($allow === false && api_is_allowed_to_edit()) {
- if (!isset($_GET['action']) ||
- isset($_GET['action']) && $_GET['action'] == 'list'
- ) {
- $actionsLeft .= "<a href=\"".api_get_self()."?".api_get_cidreq()."&action=delete_all\" onclick=\"javascript:if(!confirm('".get_lang("ConfirmYourChoice")."')) return false;\">".
- Display::return_icon(
- 'delete_announce.png',
- get_lang('AnnouncementDeleteAll'),
- '',
- ICON_SIZE_MEDIUM
- )."</a>";
- }
- }
- }
- if ($show_actions) {
- echo Display::toolbarAction('toolbar', [$actionsLeft, $searchFormToString]);
- }
- echo $content;
- if (empty($_GET['origin']) || $_GET['origin'] !== 'learnpath') {
- //we are not in learnpath tool
- Display::display_footer();
- }
|