forked from mehulsbhatt/opensis
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathfor_export.php
More file actions
138 lines (128 loc) · 5.76 KB
/
for_export.php
File metadata and controls
138 lines (128 loc) · 5.76 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
<?php
#**************************************************************************
# openSIS is a free student information system for public and non-public
# schools from Open Solutions for Education, Inc. It is web-based,
# open source, and comes packed with features that include student
# demographic info, scheduling, grade book, attendance,
# report cards, eligibility, transcripts, parent portal,
# student portal and more.
#
# Visit the openSIS web site at http://www.opensis.com to learn more.
# If you have question regarding this system or the license, please send
# an email to info@os4ed.com.
#
# Copyright (C) 2007-2008, Open Solutions for Education, Inc.
#
#*************************************************************************
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, version 2 of the License. See license.txt.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>.
#**************************************************************************
//error_reporting(1);
error_reporting(E_ERROR);
$start_time = time();
include 'Warehouse.php';
array_rwalk($_REQUEST,'strip_tags');
if(!isset($_REQUEST['_CENTRE_PDF']))
{
Warehouse('header');
//if(strpos($_REQUEST['modname'],'misc/')===false && $_REQUEST['modname']!='Students/Student.php' && $_REQUEST['modname']!='School_Setup/Calendar.php' && $_REQUEST['modname']!='Scheduling/Schedule.php' && $_REQUEST['modname']!='Attendance/Percent.php' && $_REQUEST['modname']!='Attendance/Percent.php?list_by_day=true' && $_REQUEST['modname']!='Scheduling/MassRequests.php' && $_REQUEST['modname']!='Scheduling/MassSchedule.php' && $_REQUEST['modname']!='Student_Billing/Fees.php')
if(strpos($_REQUEST['modname'],'misc/')===false)
echo '<script language="JavaScript">if(window == top && (!window.opener || window.opener.location.href.substring(0,(window.opener.location.href.indexOf("&")!=-1?window.opener.location.href.indexOf("&"):window.opener.location.href.replace("#","").length))!=window.location.href.substring(0,(window.location.href.indexOf("&")!=-1?window.location.href.indexOf("&"):window.location.href.replace("#","").length)))) window.location.href = "index.php";</script>';
echo "<BODY onload='doOnload();'>";
#echo '<DIV id="Migoicons" style="visibility:hidden;position:absolute;z-index:1000;top:-100"></DIV><SCRIPT language="JavaScript1.2" type="text/javascript">var TipId="Migoicons";var FiltersEnabled = 1;mig_clay();</SCRIPT';
echo '<DIV id="Migoicons" style="visibility:hidden;position:absolute;z-index:1000;top:-100"></DIV>';
echo "<TABLE width=100% border=0 cellpadding=0><TR><TD valign=top align=center>";
}
if($_REQUEST['modname'])
{
if($_REQUEST['_CENTRE_PDF']=='true')
ob_start();
if(strpos($_REQUEST['modname'],'?')!==false)
{
$modname = substr($_REQUEST['modname'],0,strpos($_REQUEST['modname'],'?'));
$vars = substr($_REQUEST['modname'],(strpos($_REQUEST['modname'],'?')+1));
$vars = explode('?',$vars);
foreach($vars as $code)
{
$code = explode('=',$code);
$_REQUEST[$code[0]] = $code[1];
}
}
else
$modname = $_REQUEST['modname'];
if($_REQUEST['LO_save']!='1' && !isset($_REQUEST['_CENTRE_PDF']) && (strpos($modname,'misc/')===false || $modname=='misc/Registration.php' || $modname=='misc/Export.php' || $modname=='misc/Portal.php'))
$_SESSION['_REQUEST_vars'] = $_REQUEST;
$allowed = false;
include 'Menu.php';
foreach($_CENTRE['Menu'] as $modcat=>$programs)
{
if($_REQUEST['modname']==$modcat.'/Search.php')
{
$allowed = true;
break;
}
foreach($programs as $program=>$title)
{
if($_REQUEST['modname']==$program)
{
$allowed = true;
break;
}
}
}
if(substr($_REQUEST['modname'],0,5)=='misc/')
$allowed = true;
if($allowed)
{
if(Preferences('SEARCH')!='Y')
$_REQUEST['search_modfunc'] = 'list';
include('modules/'.$modname);
}
else
{
if(User('USERNAME'))
{
echo "You're not allowed to use this program! This attempted violation has been logged and your IP address was captured.";
DBQuery("INSERT INTO HACKING_LOG (HOST_NAME,IP_ADDRESS,LOGIN_DATE,VERSION,PHP_SELF,DOCUMENT_ROOT,SCRIPT_NAME,MODNAME,USERNAME) values('$_SERVER[SERVER_NAME]','$_SERVER[REMOTE_ADDR]','".date('Y-m-d')."','$CentreVersion','$_SERVER[PHP_SELF]','$_SERVER[DOCUMENT_ROOT]','$_SERVER[SCRIPT_NAME]','$_REQUEST[modname]','".User('USERNAME')."')");
Warehouse('footer');
if($CentreNotifyAddress)
mail($CentreNotifyAddress,'HACKING ATTEMPT',"INSERT INTO HACKING_LOG (HOST_NAME,IP_ADDRESS,LOGIN_DATE,VERSION,PHP_SELF,DOCUMENT_ROOT,SCRIPT_NAME,MODNAME,USERNAME) values('$_SERVER[SERVER_NAME]','$_SERVER[REMOTE_ADDR]','".date('Y-m-d')."','$CentreVersion','$_SERVER[PHP_SELF]','$_SERVER[DOCUMENT_ROOT]','$_SERVER[SCRIPT_NAME]','$_REQUEST[modname]','".User('USERNAME')."')");
}
exit;
}
if($_SESSION['unset_student'])
{
unset($_SESSION['unset_student']);
unset($_SESSION['staff_id']);
}
}
if(!isset($_REQUEST['_CENTRE_PDF']))
{
echo '</TD></TR></TABLE>';
for($i=1;$i<=$_CENTRE['PrepareDate'];$i++)
{
echo '<script type="text/javascript">
Calendar.setup({
monthField : "monthSelect'.$i.'",
dayField : "daySelect'.$i.'",
yearField : "yearSelect'.$i.'",
ifFormat : "%d-%b-%y",
button : "trigger'.$i.'",
align : "Tl",
singleClick : true
});
</script>';
}
echo '</BODY>';
echo '</HTML>';
}
?>