From 7f43f3bfe50a4bfbbaa74d52b889668354ad9fcf Mon Sep 17 00:00:00 2001 From: Philip Häusler Date: Sat, 23 Aug 2014 17:24:11 +0200 Subject: remove html templates --- includes/pages/user_wakeup.php | 90 ------------------------------------------ 1 file changed, 90 deletions(-) delete mode 100644 includes/pages/user_wakeup.php (limited to 'includes/pages/user_wakeup.php') diff --git a/includes/pages/user_wakeup.php b/includes/pages/user_wakeup.php deleted file mode 100644 index 4ac5c0b7..00000000 --- a/includes/pages/user_wakeup.php +++ /dev/null @@ -1,90 +0,0 @@ -getTimestamp(); - $bemerkung = strip_request_item_nl('Bemerkung'); - $ort = strip_request_item('Ort'); - $SQL = "INSERT INTO `Wecken` (`UID`, `Date`, `Ort`, `Bemerkung`) " - . "VALUES ('" . sql_escape($user['UID']) . "', '" - . sql_escape($date) . "', '" . sql_escape($ort) . "', " . "'" - . sql_escape($bemerkung) . "')"; - sql_query($SQL); - $html .= success(_("Entry saved."), true); - } else - $html .= error(_("Broken date!"), true); - break; - - case 'delete' : - if (isset ($_REQUEST['id']) && preg_match("/^[0-9]{1,11}$/", $_REQUEST['id'])) - $id = $_REQUEST['id']; - else - return error(_("Incomplete call, missing wake-up ID."), true); - - $wakeup = sql_select("SELECT * FROM `Wecken` WHERE `ID`=" . sql_escape($id) . " LIMIT 1"); - if (count($wakeup) > 0 && $wakeup[0]['UID'] == $user['UID']) { - sql_query("DELETE FROM `Wecken` WHERE `ID`=" . sql_escape($id) . " LIMIT 1"); - $html .= success(_("Wake-up call deleted."), true); - } else - return error(_("No wake-up found."), true); - break; - } - } - - $html .= '

' . sprintf(_("Hello %s, here you can register for a wake-up call. Simply say when and where the angel should come to wake you."), User_Nick_render($user)) . '

'; - $html .= _("All ordered wake-up calls, next first."); - $html .= ' - - - - - - - - - '; - - $wecken_source = sql_select("SELECT * FROM `Wecken` ORDER BY `Date` ASC"); - foreach($wecken_source as $wecken) { - $html .= ''; - $html .= ''; - - $user_source = User($wecken['UID']); - if($user_source === false) - engelsystem_error("Unable to load user."); - - $html .= ''; - $html .= ''; - $html .= ''; - if ($wecken['UID'] == $user['UID']) - $html .= ''; - else - $html .= ''; - $html .= ''; - } - - $html .= '
' . _("Date") . '' . _("Nick") . '' . _("Place") . '' . _("Notes") . '
' . date("Y-m-d H:i", $wecken['Date']) . ' ' . User_Nick_render($user_source) . ' ' . $wecken['Ort'] . ' ' . $wecken['Bemerkung'] . ' " . _("delete") . '

' . _("Schedule a new wake-up here:"); - - $html .= template_render('../templates/user_wakeup.html', array ( - 'wakeup_link' => page_link_to("user_wakeup"), - 'date_text' => _("Date"), - 'date_value' => date("Y-m-d H:i"), - 'place_text' => _("Place"), - 'comment_text' => _("Notes"), - 'comment_value' => "Knock knock Leo, follow the white rabbit to the blue tent", - 'submit_text' => _("Save") - )); - return $html; -} -?> -- cgit v1.2.3-70-g09d2