Skip to content
Snippets Groups Projects
Commit 68b87ac1 authored by Tim Repke's avatar Tim Repke
Browse files

added implementation for notes

parent 41bd7f0e
No related branches found
No related tags found
No related merge requests found
......@@ -23,7 +23,8 @@ if (isLoggedIn())
"Übersicht" => "stuff",
"Meldeliste" => "list",
"Kosten" => "cost",
"Rundmail" => "mail"
"Rundmail" => "mail",
"Notitzen" => "notes"
);
$page = isset($_GET['page']) ? $_GET['page'] : "";
......@@ -45,6 +46,8 @@ END;
//page_cost(); break;
//case "mail":
//page_mail(); break;
case "notes":
page_notes(); break;
default:
page_404($page);
}
......
......@@ -51,4 +51,8 @@ function page_404($pag)
}
function page_notes(){
require_once "pages_notes.php";
}
?>
\ No newline at end of file
<?php
/**
* Created by PhpStorm.
* User: tim
* Date: 8/9/14
* Time: 4:07 PM
*/
global $headers, $text;
$headers .="";
$text .= "notes here";
\ No newline at end of file
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment