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 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271
|
<?php
/**
* GForge Survey Question Facility
*
* Copyright 2004 GForge, LLC
* http://gforge.org/
*
* This file is part of GForge.
*
* GForge 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; either version 2 of the License, or
* (at your option) any later version.
*
* GForge 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 GForge; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*/
/*
Survery Question
By Sung Kim 2004/2/13
*/
require_once('common/include/Error.class');
class SurveyQuestion extends Error {
/**
* Associative array of data from db.
*
* @var array $data_array.
*/
var $data_array;
/**
* The Group object.
*
* @var object $Group.
*/
var $Group; //group object
/**
* Constructor.
*
* @param object The Group object to which this Survey Question is associated.
* @param int The questtion_id.
* @param array The associative array of data.
* @return boolean success.
*/
function SurveyQuestion(&$Group, $question_id=false, $arr=false) {
global $Language;
$this->Error();
if (!$Group || !is_object($Group)) {
$this->setError($Language->getText('general','error_no_valid_group_object','Survey Question'));
return false;
}
if ($Group->isError()) {
$this->setError('Survey:: '.$Group->getErrorMessage());
return false;
}
$this->Group =& $Group;
if ($question_id) {
if (!$arr || !is_array($arr)) {
if (!$this->fetchData($question_id)) {
return false;
}
} else {
$this->data_array =& $arr;
if ($this->data_array['group_id'] != $this->Group->getID()) {
$this->setError($Language->getText('general','error_group_id'));
$this->data_array = null;
return false;
}
}
}
return true;
}
/**
* create - use this function to create a survey question
*
* @param string The question
* @param int The question type
* 1: Radio Buttons 1-5
* 2: Text Area
* 3: Radio Buttons Yes/No
* 4: Comment Only
* 5: Text Field
* 6: None
* @return boolean success.
*/
function create($question, $question_type=1) {
global $Language;
if (strlen($question) < 3) {
$this->setError($Language->getText('survey_error','min_question_length'));
return false;
} else {
// Current permissions check.
// permission should be checked in higer level to faciliate usability
}
$group_id = $this->Group->GetID();
$sql="INSERT INTO survey_questions (group_id,question,question_type)
VALUES ($group_id,'".htmlspecialchars($question)."',$question_type)";
$res=db_query($sql);
if (!$res) {
$this->setError($Language->getText('survey_add_question','question_added').db_error());
return false;
}
/* Load question to data array */
$question_id=db_insertid($res,'survey_questions','question_id');
return $this->fetchData($question_id);
}
/**
* update - use this function to update a survey question
*
* @param string The question
* @param int The question type
* 1: Radio Buttons 1-5
* 2: Text Area
* 3: Radio Buttons Yes/No
* 4: Comment Only
* 5: Text Field
* 6: None
* @return boolean success.
*/
function update($question, $question_type=1) {
global $Language;
if (strlen($question) < 3) {
$this->setError($Language->getText('survey_error','min_question_length'));
return false;
} else {
// Current permissions check.
// permission should be checked in higer level to faciliate usability
}
$group_id = $this->Group->GetID();
$question_id = $this->getID();
$sql="UPDATE survey_questions SET question='".htmlspecialchars($question)."',
question_type='$question_type'
where question_id='$question_id' AND group_id='$group_id'";
$res=db_query($sql);
if (!$res || db_affected_rows($res) < 1) {
$this->setError($Language->getText('survey_edit_question','update_failed').db_error());
return false;
}
return $this->fetchData($question_id);
}
/**
* delete - use this function to delete a survey question
*
* @return boolean success.
*/
function delete() {
global $Language;
$group_id = $this->Group->GetID();
$question_id = $this->getID();
$sql="DELETE FROM survey_questions where question_id='$question_id' AND group_id='$group_id'";
$res=db_query($sql);
if (!$res || db_affected_rows($res) < 1) {
$this->setError($Language->getText('survey_edit_question','delete_failed').db_error());
return false;
}
$this->data_array = null;
return true;
}
/**
* fetchData - re-fetch the data for this survey question from the database.
*
* @param int The survey question_id.
* @return boolean success.
*/
function fetchData($question_id) {
global $Language;
$group_id = $this->Group->GetID();
$sql="SELECT survey_questions.*, survey_question_types.type
FROM survey_questions ,survey_question_types
WHERE survey_question_types.id=survey_questions.question_type
AND survey_questions.question_id='$question_id'
AND survey_questions.group_id='$group_id'";
$res=db_query($sql);
if (!$res || db_numrows($res) < 1) {
$this->setError($Language->getText('survey_edit_question','error_finding_question').db_error());
return false;
}
$this->data_array =& db_fetch_array($res);
db_free_result($res);
return true;
}
/**
* getGroup - get the Group object this SurveyQuestion is associated with.
*
* @return object The Group object.
*/
function &getGroup() {
return $this->Group;
}
/**
* getID - Get the id of this Survey Question
*
* @return int The question_id
*/
function getID() {
return $this->data_array['question_id'];
}
/**
* getQuestion - Get the question
*
* @return string the question
*/
function getQuestion() {
return $this->data_array['question'];
}
/**
* getQuestionType - Get the question type
*
* @return int the question type
*/
function getQuestionType() {
return $this->data_array['question_type'];
}
/**
* getQuestionStringType - Get the type from survey_question_types
*
* @return String the question type
*/
function getQuestionStringType() {
return $this->data_array['type'];
}
}
// Local Variables:
// mode: php
// c-file-style: "bsd"
// End:
?>
|