diff --git a/registration-system/admin/index.php b/registration-system/admin/index.php index a7344bc0fac855bd0e5621dd04f5670e51366f2a..a0d9d229b46d8c64c357361301847ee80f590411 100644 --- a/registration-system/admin/index.php +++ b/registration-system/admin/index.php @@ -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); } diff --git a/registration-system/admin/pages.php b/registration-system/admin/pages.php index 7c24d363103313decb074c916ddb42118e6549d3..dfd0ca0a23c6069ad6a838d9e6c1f7594d1f060e 100644 --- a/registration-system/admin/pages.php +++ b/registration-system/admin/pages.php @@ -51,4 +51,8 @@ function page_404($pag) } +function page_notes(){ + require_once "pages_notes.php"; +} + ?> \ No newline at end of file diff --git a/registration-system/admin/pages_notes.php b/registration-system/admin/pages_notes.php new file mode 100644 index 0000000000000000000000000000000000000000..198d1d905ad7cf009453307664cc61e88563cf81 --- /dev/null +++ b/registration-system/admin/pages_notes.php @@ -0,0 +1,10 @@ +<?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