Minor - format code.

1.10.x
Julio Montoya 10 years ago
parent aad2bca3c1
commit ba286e7897
  1. 21
      main/announcements/announcements.php

@ -1,5 +1,6 @@
<?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
@ -330,7 +331,7 @@ switch ($action) {
$form->addButtonSave(get_lang('ButtonPublishAnnouncement'));
$form->setDefaults($defaults);
$content = $form->return_form();
$content = $form->returnForm();
if ($form->validate()) {
$data = $form->getSubmitValues();
@ -357,7 +358,12 @@ switch ($action) {
if ($_POST['email_ann'] && empty($_POST['onlyThoseMails'])) {
AnnouncementManager::send_email($id, $sendToUsersInSession);
}
Display::addFlash(Display::return_message(get_lang('AnnouncementModified'), 'success'));
Display::addFlash(
Display::return_message(
get_lang('AnnouncementModified'),
'success'
)
);
header('Location: '.$homeUrl);
exit;
}
@ -396,7 +402,10 @@ switch ($action) {
/* MAIL FUNCTION */
if (isset($data['email_ann']) && $data['email_ann']) {
AnnouncementManager::send_email($insert_id, $sendToUsersInSession);
AnnouncementManager::send_email(
$insert_id,
$sendToUsersInSession
);
}
header('Location: '.$homeUrl);
exit;
@ -429,9 +438,9 @@ if (empty($_GET['origin']) || $_GET['origin'] !== 'learnpath') {
// Actions
$show_actions = false;
if ((api_is_allowed_to_edit(false,true) OR
(api_get_course_setting('allow_user_edit_announcement') && !api_is_anonymous())) and
(empty($_GET['origin']) or $_GET['origin'] !== 'learnpath')
if ((api_is_allowed_to_edit(false,true) ||
(api_get_course_setting('allow_user_edit_announcement') && !api_is_anonymous())) &&
(empty($_GET['origin']) || $_GET['origin'] !== 'learnpath')
) {
echo '<div class="actions">';
if (in_array($action, array('add', 'modify','view'))) {

Loading…
Cancel
Save