00001 <? 00002 /************************************************************************************** 00003 Studentski Informacijski servis, 2004 00004 ************************************************************************************** 00005 indeks.php 00006 online indeks studenta 00007 00008 00009 Srdjan Segvic - srle 00010 ************************************************************************************** 00011 ************************************************************************************** 00012 This program is free software; you can redistribute it and/or modify 00013 it under the terms of the GNU General Public License as published by 00014 the Free Software Foundation; either version 2 of the License, or 00015 (at your option) any later version. 00016 00017 This program is distributed in the hope that it will be useful, 00018 but WITHOUT ANY WARRANTY; without even the implied warranty of 00019 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 00020 GNU Library General Public License for more details. 00021 00022 You should have received a copy of the GNU General Public License 00023 along with this program; if not, write to the Free Software 00024 Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. 00025 **************************************************************************************/ 00026 session_start(); 00027 // 00028 // provjera sessije i inkludanje osnovnih funkcija i potrebnih template i language fileova 00029 // 00030 $id = $_SESSION['id']; 00031 include('functions/func_check_session.php'); 00032 checkSession($id); 00033 include('connect.php'); 00034 include('functions/func_preference.php'); 00035 include('template/header.php'); 00036 include('functions/func_indeks.php'); 00037 include('template/template_indeks.php'); 00038 $lang = getLang($id); 00039 include("lang/$lang/lang_indeks.php"); 00040 printRokoviStart(_INDEXTITLE, 724); 00041 // 00042 // detaljni prikaz rezultat za polozeni ispit 00043 // 00044 if (isset($_GET['det'])){ 00045 indeksDetails($id, $_GET['det']); 00046 } 00047 // 00048 // pregled svih polozenih ispita 00049 // 00050 elseif (isset($_GET['all'])){ 00051 indeksAllBySemester($id); 00052 } 00053 // 00054 // pregled ispita bez usmenog ispita 00055 // 00056 elseif (isset($_GET['nor'])){ 00057 indeksNoOral($id); 00058 } 00059 // 00060 // pregled zaostalih ispita 00061 // 00062 elseif (isset($_GET['miss'])){ 00063 indeksMissExams($id, $_SESSION['semestar'], $_SESSION['odsjek']); 00064 } 00065 // 00066 // Statistika ispita 00067 // 00068 elseif (isset($_GET['stats'])){ 00069 indeksStats($id); 00070 } 00071 // 00072 // prva indeks forma 00073 // 00074 else { 00075 indeksStart($id, $_SESSION['semestar']); 00076 } 00077 printRokoviKraj(); 00078 include('template/footer.php'); 00079 ?>