-
Notifications
You must be signed in to change notification settings - Fork 205
/
StudentFilterList.php
60 lines (48 loc) · 2.6 KB
/
StudentFilterList.php
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
<?php
#**************************************************************************
# openSIS is a free student information system for public and non-public
# schools from Open Solutions for Education, Inc. web: www.os4ed.com
#
# openSIS 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.
#
# This program is released 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/>.
#
#***************************************************************************************
include('RedirectRootInc.php');
include 'Warehouse.php';
include 'Data.php';
session_start();
if ($_REQUEST['modfunc'] != 'remove') {
$sql = 'SELECT FILTER_ID, FILTER_NAME,NULL AS REMOVE_LINK,NULL AS MODIFY_LINK FROM filters WHERE SCHOOL_ID IN ('.UserSchool().',0) AND SHOW_TO IN ('. UserID().',0)';
$F = DBQuery($sql);
$filters_RET = DBGet($F);
$columns2 = array('REMOVE_LINK' => '','FILTER_NAME' => _filterName,'MODIFY_LINK' => '');
$filter_counter=1;
foreach($filters_RET as $key)
{
$filter_remove_link='<a class="btn btn-danger btn-icon btn-xs legitRipple" href="Modules.php?modname=students/StudentFilters.php&modfunc=remove&filter_id='.$key['FILTER_ID'].'" onclick="hide_filter_modal();"><i class="icon-cross2 "></i></a>';
$filter_modify_link='<a class="btn btn-primary btn-xs display-inline-block" href="Modules.php?modname=students/StudentFilters.php&modfunc=filter_edit&filter_id='.$key['FILTER_ID'].'" onClick="hide_filter_modal()">'. _edit .'</a>';
$filters_RET[$filter_counter]['REMOVE_LINK'] = $filter_remove_link;
$filters_RET[$filter_counter]['MODIFY_LINK'] = $filter_modify_link;
$filter_counter++;
}
ListOutput($filters_RET, $columns2, _filter, _filters, false, array(), array('search' => false, 'save' => false));
}
?>