Added update_year.sh (still not fully flexible) and updated all years with it.
[mailer.git] / inc / libs / grade_functions.php
1 <?php
2 /************************************************************************
3  * Mailer v0.2.1-FINAL                                Start: 10/21/2012 *
4  * ===================                          Last change: 10/21/2012 *
5  *                                                                      *
6  * -------------------------------------------------------------------- *
7  * File              : grade_functions.php                              *
8  * -------------------------------------------------------------------- *
9  * Short description : Functions for ext-                               *
10  * -------------------------------------------------------------------- *
11  * Kurzbeschreibung  : Funktionen fuer ext-                             *
12  * -------------------------------------------------------------------- *
13  * $Revision::                                                        $ *
14  * $Date::                                                            $ *
15  * $Tag:: 0.2.1-FINAL                                                 $ *
16  * $Author::                                                          $ *
17  * -------------------------------------------------------------------- *
18  * Copyright (c) 2003 - 2009 by Roland Haeder                           *
19  * Copyright (c) 2009 - 2015 by Mailer Developer Team                   *
20  * For more information visit: http://mxchange.org                      *
21  *                                                                      *
22  * This program is free software; you can redistribute it and/or modify *
23  * it under the terms of the GNU General Public License as published by *
24  * the Free Software Foundation; either version 2 of the License, or    *
25  * (at your option) any later version.                                  *
26  *                                                                      *
27  * This program is distributed in the hope that it will be useful,      *
28  * but WITHOUT ANY WARRANTY; without even the implied warranty of       *
29  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the        *
30  * GNU General Public License for more details.                         *
31  *                                                                      *
32  * You should have received a copy of the GNU General Public License    *
33  * along with this program; if not, write to the Free Software          *
34  * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston,               *
35  * MA  02110-1301  USA                                                  *
36  ************************************************************************/
37
38 // Some security stuff...
39 if (!defined('__SECURITY')) {
40         die();
41 } // END - if
42
43 // Generates a option "list" for all created grade ids
44 function generateGradeDataIdOptions ($defaultId = NULL) {
45         // Do we have cache?
46         if (!isset($GLOBALS[__FUNCTION__][$defaultId])) {
47                 // Look for all
48                 $grades = getArrayFromTable('grade_data', array('grade_id', 'grade_name'), 'grade_id');
49
50                 // Init entries arrays
51                 $gradeKeys = array();
52                 $gradeValues = array();
53
54                 // Load all entries
55                 foreach ($grades as $grade) {
56                         // Add it to arrays
57                         array_push($gradeKeys  , $grade['grade_id']);
58                         array_push($gradeValues, $grade['grade_name']);
59                 } // END - foreach
60
61                 // Generate option "list"
62                 $GLOBALS[__FUNCTION__][$defaultId] = generateOptions(
63                         '/ARRAY/',
64                         $gradeKeys,
65                         $gradeValues,
66                         $defaultId,
67                         '',
68                         '',
69                         array(),
70                         '',
71                         TRUE,
72                         FALSE
73                 );
74         } // END - if
75
76         // Return cache
77         return $GLOBALS[__FUNCTION__][$defaultId];
78 }
79
80 // Generates a option "list" for all created "parent" grade ids
81 function generateGradeDataParentIdOptions ($defaultId = NULL) {
82         // Do we have cache?
83         if (!isset($GLOBALS[__FUNCTION__][$defaultId])) {
84                 // Default is no parent (NULL)
85                 $whereStatement = '';
86
87                 // Is default set?
88                 if (!is_null($defaultId)) {
89                         // Then exlude it
90                         $whereStatement = sprintf('WHERE `grade_id` != %s', bigintval($defaultId));
91                 } // END - if
92
93                 // Look for all
94                 $grades = getArrayFromTable('grade_data', array('grade_id', 'grade_name'), 'grade_id', 'ASC', $whereStatement);
95
96                 // Init entries arrays
97                 $gradeKeys = array();
98                 $gradeValues = array();
99
100                 // Are there entries?
101                 foreach ($grades as $grade) {
102                         // Add it to arrays
103                         array_push($gradeKeys  , $grade['grade_id']);
104                         array_push($gradeValues, $grade['grade_name']);
105                 } // END - foreach
106
107                 // Generate option "list"
108                 $GLOBALS[__FUNCTION__][$defaultId] = generateOptions(
109                         '/ARRAY/',
110                         $gradeKeys,
111                         $gradeValues,
112                         $defaultId
113                 );
114         } // END - if
115
116         // Return cache
117         return $GLOBALS[__FUNCTION__][$defaultId];
118 }
119
120 // Generates a selection box for grades
121 function generateAdminGradeDataSelectionBox ($gradeId, $defaultId = NULL) {
122         // May only be called as admin
123         assert(isAdmin());
124         assert(isValidId($gradeId));
125
126         // Load template
127         return generateSelectionBoxFromArray(getArrayFromTable('grade_data', array('grade_id', 'grade_name'), 'grade_id'), 'grade_parent_id', $defaultId, '', '', '', $defaultId, '', TRUE, TRUE);
128 }
129
130 // ----------------------------------------------------------------------------
131 //                             XML call-back functions
132 // ----------------------------------------------------------------------------
133
134 // For 'doing' add grade data, the column-index is required
135 function addXmlSpecialAdminAddDoGradeData () {
136         // So set it all here
137         $GLOBALS['__COLUMN_INDEX']['doXmlCallbackFunction']  = 'column';
138         $GLOBALS['__XML_ARGUMENTS']['doXmlCallbackFunction']['column_index'] = 'column';
139 }
140
141 // [EOF]
142 ?>