aboutsummaryrefslogtreecommitdiff
path: root/lib/evaluation/classes/EvaluationAnswer.class.php
blob: 0116e3b46311475891e63adfcd6dd555f77f3b37 (plain)
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
272
273
274
275
276
277
<?php
# Lifter002: TODO
# Lifter007: TODO
# Lifter003: TODO
# Lifter010: TODO
/**
 * Beschreibung
 *
 * @author      Alexander Willner <mail@AlexanderWillner.de>
 * @copyright   2004 Stud.IP-Project
 * @access      public
 * @package     evaluation
 * @modulegroup evaluation_modules
 *
 */

// +--------------------------------------------------------------------------+
// This file is part of Stud.IP
// Copyright (C) 2001-2004 Stud.IP
// +--------------------------------------------------------------------------+
// 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; either version 2
// of the License, or any later version.
// +--------------------------------------------------------------------------+
// 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, write to the Free Software
// Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
// +--------------------------------------------------------------------------+

# Include all required files ================================================ #
require_once 'lib/evaluation/evaluation.config.php';
require_once EVAL_FILE_ANSWERDB;
require_once EVAL_FILE_OBJECT;

/**
 * @const INSTANCEOF_EVALANSWER Is instance of an evaluationanswer object
 * @access public
 */
define("INSTANCEOF_EVALANSWER", "EvaluationAnswer");

class EvaluationAnswer extends EvaluationObject
{

    /**
     * The value for an answer
     * @access   private
     * @var      integer $value ;
     */
    var $value;

    /**
     * If >0 the answer is a freetext with $rows rows
     * @access   private
     * @var      integer $rows
     */
    var $rows;

    /**
     * The userIDs of users who voted for this answer
     * @access   private
     * @var      array $users
     */
    var $users;

    /**
     * The number of users voted for this answer
     * @access   private
     * @var      integer $userNum
     */
    var $userNum;

    /**
     * For internal use (getNextUserID)
     * @access   private
     * @var      integer $userNumIterator
     */
    var $userNumIterator;

    /**
     * If true this is the residual answer for a question
     * @access   private
     * @var      boolean $residual
     */
    var $residual;

    /**
     * Constructor
     * @access   public
     * @param string $objectID The ID of an existing answer
     * @param object $parentObject The parent object if exists
     * @param integer $loadChildren See const EVAL_LOAD_*_CHILDREN
     */
    public function __construct($objectID = "", $parentObject = null, $loadChildren = EVAL_LOAD_NO_CHILDREN)
    {
        /* Set default values ------------------------------------------------- */
        parent::__construct($objectID, $parentObject, $loadChildren);
        $this->instanceof = INSTANCEOF_EVALANSWER;

        $this->value = 0;
        $this->rows = 0;
        $this->users = [];
        $this->userNum = 0;
        $this->userNumIterator = 0;
        $this->residual = NO;

        $this->db = new EvaluationAnswerDB ();
        if ($this->db->isError()) {
            return $this->throwErrorFromClass($this->db);
        }
        $this->init($objectID);

    }

    /**
     * Gets the number of votes for this answer
     * @access  public
     * @return  string  The counter of the answer
     */
    public function getNumberOfVotes()
    {
        return $this->userNum;
    }

    /**
     * Gets the number of rows from freetext answers
     * @access   public
     * @return   integer   The number of rows
     */
    public function getRows()
    {
        return $this->rows;
    }

    /**
     * Gets the number of rows for freetext answers
     * @access   public
     * @param integer $rows The number of rows
     */
    public function setRows($rows)
    {
        $this->rows = $rows;
    }

    /**
     * Gets the value of an answer
     * @access   public
     * @return   integer   The value
     */
    public function getValue()
    {
        return $this->value;;
    }

    /**
     * Sets the value of an answer
     * @access   public
     * @param integer $value The value
     */
    public function setValue($value)
    {
        $this->value = $value;
    }

    /**
     * Checks whether the answer is a residual answer
     * @access   public
     * @return   boolean   YES if it is a residual answer
     */
    public function isResidual()
    {
        return $this->residual == YES ? YES : NO;
    }

    /**
     * Sets the answers as an residual answer
     * @access   public
     * @param boolean $boolean YES to set it as a residual answer
     */
    public function setResidual($boolean)
    {
        $this->residual = $boolean == YES ? YES : NO;
    }

    /**
     * Vote for this answer
     * @access  public
     * @param string $userID The user id
     */
    public function vote($userID)
    {
        $this->addUserID($userID);
    }

    /**
     * Non-Anonymous vote for this answer
     * @access  public
     * @param string $userID The user id
     */
    public function addUserID($userID)
    {
        if (empty ($userID)) {
            return $this->throwError(1, _("Nur pseudonyme Abstimmung erlaubt! Neue ID mit StudipObject::createNewID () erzeugen"));
        }

        $this->userNum++;
        array_push($this->users, $userID);
    }

    /**
     * Gets the first user and removes it
     * @access  public
     * @return  string  The first user id
     */
    public function getUserID()
    {
        if ($this->userNum > 0)
            $this->userNum--;
        return array_pop($this->users);
    }

    /**
     * Gets the next user
     * @access  public
     * @return  string  The next user id, otherwise NULL
     */
    public function getNextUserID()
    {
        if ($this->userNumIterator >= $this->userNum) {
            $this->userNumIterator = 0;
            return NULL;
        }
        return $this->users[$this->userNumIterator++];
    }

    /**
     * Gets all the user ids
     * @access  public
     * @return  array  An array full of user ids
     */
    public function getUserIDs()
    {
        return $this->users;
    }

    /**
     * @access public
     * @return integer  YES, if the Answer is a textfield
     */
    public function isFreetext()
    {
        return ($this->rows == 0) ? NO : YES;
    }

    /**
     * Checks if object is in a valid state
     * @access private
     */
    public function check()
    {
        parent::check();
    }

    /**
     * Debugfunction
     * @access   private
     */
    public function toString()
    {
        parent::toString();
        echo "Anzahl der Stimmen: " . $this->getNumberOfVotes() . "<br>\n";
    }
}