2 /************************************************************************
3 * Mailer v0.2.1-FINAL Start: 10/21/2012 *
4 * =================== Last change: 10/21/2012 *
6 * -------------------------------------------------------------------- *
7 * File : grade_functions.php *
8 * -------------------------------------------------------------------- *
9 * Short description : Functions for ext- *
10 * -------------------------------------------------------------------- *
11 * Kurzbeschreibung : Funktionen fuer ext- *
12 * -------------------------------------------------------------------- *
15 * $Tag:: 0.2.1-FINAL $ *
17 * -------------------------------------------------------------------- *
18 * Copyright (c) 2003 - 2009 by Roland Haeder *
19 * Copyright (c) 2009 - 2013 by Mailer Developer Team *
20 * For more information visit: http://mxchange.org *
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. *
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. *
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, *
36 ************************************************************************/
38 // Some security stuff...
39 if (!defined('__SECURITY')) {
43 // Generates a option "list" for all created "parent" grade ids
44 function generateGradeDataParentIdOptions ($defaultId = NULL) {
46 if (!isset($GLOBALS[__FUNCTION__][$defaultId])) {
47 // Default is no parent (NULL)
51 if (!is_null($defaultId)) {
53 $whereStatement = sprintf('WHERE `grade_id`=%s', bigintval($defaultId));
57 $result = sqlQuery('SELECT
61 `{?_MYSQL_PREFIX?}_grade_data`
62 ' . $whereStatement . '
64 `grade_id` ASC', __FUNCTION__, __LINE__);
66 // Init entries arrays
68 $gradeValues = array();
71 if (!ifSqlHasZeroNums($result)) {
73 while ($grade = sqlFetchArray($result)) {
75 array_push($gradeKeys , $grade['grade_id']);
76 array_push($gradeValues, $grade['grade_name']);
80 // Generate option "list"
81 $GLOBALS[__FUNCTION__][$defaultId] = generateOptions(
89 sqlFreeResult($result);
93 return $GLOBALS[__FUNCTION__][$defaultId];
96 // ----------------------------------------------------------------------------
97 // XML call-back functions
98 // ----------------------------------------------------------------------------
100 // For 'doing' add grade data, the column-index is required
101 function addXmlSpecialAdminAddDoGradeData () {
102 // So set it all here
103 $GLOBALS['__COLUMN_INDEX']['doXmlCallbackFunction'] = 'column';
104 $GLOBALS['__XML_ARGUMENTS']['doXmlCallbackFunction']['column_index'] = 'column';