ILIAS  release_5-1 Revision 5.0.0-5477-g43f3e3fab5f
ilLOTestAssignment Class Reference

Settings for LO courses. More...

+ Collaboration diagram for ilLOTestAssignment:

Public Member Functions

 __construct ($a_id=0)
 constructor More...
 
 setAssignmentId ($a_id)
 
 getAssignmentId ()
 
 setContainerId ($a_id)
 
 getContainerId ()
 
 setAssignmentType ($a_type)
 
 getAssignmentType ()
 
 setObjectiveId ($a_id)
 
 getObjectiveId ()
 
 setTestRefId ($a_id)
 
 getTestRefId ()
 
 save ()
 save settings More...
 
 create ()
 Create new aassignment @global type $ilDB. More...
 
 update ()
 Update assignment @global type $ilDB. More...
 
 delete ()
 Delete assignment @global type $ilDB. More...
 
 read ()
 Read db entry @global type $ilDB. More...
 
 cloneSettings ($a_copy_id, $a_target_id, $a_objective_id)
 Clone assignments. More...
 

Private Attributes

 $assignment_id = 0
 
 $container_id = 0
 
 $assignment_type = 0
 
 $objective_id = 0
 
 $test_ref_id = 0
 

Detailed Description

Settings for LO courses.

Author
Stefan Meyer smeye.nosp@m.r.il.nosp@m.ias@g.nosp@m.mx.d.nosp@m.e
Version
$Id$

Definition at line 10 of file class.ilLOTestAssignment.php.

Constructor & Destructor Documentation

◆ __construct()

ilLOTestAssignment::__construct (   $a_id = 0)

constructor

Parameters
type$a_id

Definition at line 23 of file class.ilLOTestAssignment.php.

24 {
25 $this->setAssignmentId($a_id);
26 $this->read();
27 }
read()
Read db entry @global type $ilDB.

References read(), and setAssignmentId().

+ Here is the call graph for this function:

Member Function Documentation

◆ cloneSettings()

ilLOTestAssignment::cloneSettings (   $a_copy_id,
  $a_target_id,
  $a_objective_id 
)

Clone assignments.

Parameters
type$a_target_id
type$a_copy_id

Definition at line 181 of file class.ilLOTestAssignment.php.

182 {
183 include_once './Services/CopyWizard/classes/class.ilCopyWizardOptions.php';
185 $mappings = $options->getMappings();
186
187 if(!array_key_exists($this->getTestRefId(), $mappings))
188 {
189 return FALSE;
190 }
191
192 $copy = new ilLOTestAssignment();
193 $copy->setContainerId($a_target_id);
194 $copy->setAssignmentType($this->getAssignmentType());
195 $copy->setObjectiveId($a_objective_id);
196 $copy->setTestRefId($mappings[$this->getTestRefId()]);
197 $copy->create();
198 }
static _getInstance($a_copy_id)
Get instance of copy wizard options.
Settings for LO courses.
if(!is_array($argv)) $options

References $options, ilCopyWizardOptions\_getInstance(), getAssignmentType(), and getTestRefId().

+ Here is the call graph for this function:

◆ create()

ilLOTestAssignment::create ( )

Create new aassignment @global type $ilDB.

Definition at line 99 of file class.ilLOTestAssignment.php.

100 {
101 global $ilDB;
102
103 $this->setAssignmentId($ilDB->nextId('loc_tst_assignments'));
104 $query = 'INSERT INTO loc_tst_assignments (assignment_id, container_id, assignment_type, objective_id, tst_ref_id) '.
105 'VALUES ( '.
106 $ilDB->quote($this->getAssignmentId(),'integer').', '.
107 $ilDB->quote($this->getContainerId(),'integer').', '.
108 $ilDB->quote($this->getAssignmentType(),'integer').', '.
109 $ilDB->quote($this->getObjectiveId(),'integer').', '.
110 $ilDB->quote($this->getTestRefId(),'integer').' '.
111 ') ';
112 $GLOBALS['ilLog']->write($query);
113 $ilDB->manipulate($query);
114
115 }
$GLOBALS['PHPCAS_CLIENT']
This global variable is used by the interface class phpCAS.
Definition: CAS.php:276
global $ilDB

References $GLOBALS, $ilDB, $query, getAssignmentId(), getAssignmentType(), getContainerId(), getObjectiveId(), getTestRefId(), and setAssignmentId().

Referenced by save().

+ Here is the call graph for this function:
+ Here is the caller graph for this function:

◆ delete()

ilLOTestAssignment::delete ( )

Delete assignment @global type $ilDB.

Returns
boolean

Definition at line 139 of file class.ilLOTestAssignment.php.

140 {
141 global $ilDB;
142
143 $query = 'DELETE FROM loc_tst_assignments '.
144 'WHERE assignment_id = '.$ilDB->quote($this->getAssignmentId(),'integer').' ';
145 $ilDB->manipulate($query);
146 return TRUE;
147 }

References $ilDB, $query, and getAssignmentId().

+ Here is the call graph for this function:

◆ getAssignmentId()

ilLOTestAssignment::getAssignmentId ( )

Definition at line 34 of file class.ilLOTestAssignment.php.

References $assignment_id.

Referenced by create(), delete(), read(), save(), and update().

+ Here is the caller graph for this function:

◆ getAssignmentType()

ilLOTestAssignment::getAssignmentType ( )

Definition at line 54 of file class.ilLOTestAssignment.php.

References $assignment_type.

Referenced by cloneSettings(), create(), and update().

+ Here is the caller graph for this function:

◆ getContainerId()

ilLOTestAssignment::getContainerId ( )

Definition at line 44 of file class.ilLOTestAssignment.php.

References $container_id.

Referenced by create(), and update().

+ Here is the caller graph for this function:

◆ getObjectiveId()

ilLOTestAssignment::getObjectiveId ( )

Definition at line 64 of file class.ilLOTestAssignment.php.

References $objective_id.

Referenced by create(), and update().

+ Here is the caller graph for this function:

◆ getTestRefId()

ilLOTestAssignment::getTestRefId ( )

Definition at line 74 of file class.ilLOTestAssignment.php.

References $test_ref_id.

Referenced by cloneSettings(), create(), and update().

+ Here is the caller graph for this function:

◆ read()

ilLOTestAssignment::read ( )

Read db entry @global type $ilDB.

Returns
boolean

Definition at line 154 of file class.ilLOTestAssignment.php.

155 {
156 global $ilDB;
157
158 if(!$this->getAssignmentId())
159 {
160 return FALSE;
161 }
162
163 $query = 'SELECT * FROM loc_tst_assignments '.
164 'WHERE assignment_id = '.$ilDB->quote($this->getAssignmentId(),'integer').' ';
165 $res = $ilDB->query($query);
166 while($row = $res->fetchRow(DB_FETCHMODE_OBJECT))
167 {
168 $this->setContainerId($row->container_id);
169 $this->setObjectiveId($row->objective_id);
170 $this->setAssignmentType($row->assignment_type);
171 $this->setTestRefId($row->tst_ref_id);
172 }
173 return TRUE;
174 }
const DB_FETCHMODE_OBJECT
Definition: class.ilDB.php:11

References $ilDB, $query, $res, $row, DB_FETCHMODE_OBJECT, getAssignmentId(), setAssignmentType(), setContainerId(), setObjectiveId(), and setTestRefId().

Referenced by __construct().

+ Here is the call graph for this function:
+ Here is the caller graph for this function:

◆ save()

ilLOTestAssignment::save ( )

save settings

Returns
type

Definition at line 83 of file class.ilLOTestAssignment.php.

84 {
85 if($this->getAssignmentId())
86 {
87 return $this->update();
88 }
89 else
90 {
91 return $this->create();
92 }
93 }
update()
Update assignment @global type $ilDB.
create()
Create new aassignment @global type $ilDB.

References create(), getAssignmentId(), and update().

+ Here is the call graph for this function:

◆ setAssignmentId()

ilLOTestAssignment::setAssignmentId (   $a_id)

Definition at line 29 of file class.ilLOTestAssignment.php.

30 {
31 $this->assignment_id = $a_id;
32 }

Referenced by __construct(), and create().

+ Here is the caller graph for this function:

◆ setAssignmentType()

ilLOTestAssignment::setAssignmentType (   $a_type)

Definition at line 49 of file class.ilLOTestAssignment.php.

50 {
51 $this->assignment_type = $a_type;
52 }

Referenced by read().

+ Here is the caller graph for this function:

◆ setContainerId()

ilLOTestAssignment::setContainerId (   $a_id)

Definition at line 39 of file class.ilLOTestAssignment.php.

40 {
41 $this->container_id = $a_id;
42 }

Referenced by read().

+ Here is the caller graph for this function:

◆ setObjectiveId()

ilLOTestAssignment::setObjectiveId (   $a_id)

Definition at line 59 of file class.ilLOTestAssignment.php.

60 {
61 $this->objective_id = $a_id;
62 }

Referenced by read().

+ Here is the caller graph for this function:

◆ setTestRefId()

ilLOTestAssignment::setTestRefId (   $a_id)

Definition at line 69 of file class.ilLOTestAssignment.php.

70 {
71 $this->test_ref_id = $a_id;
72 }

Referenced by read().

+ Here is the caller graph for this function:

◆ update()

ilLOTestAssignment::update ( )

Update assignment @global type $ilDB.

Definition at line 121 of file class.ilLOTestAssignment.php.

122 {
123 global $ilDB;
124
125 $query = 'UPDATE loc_tst_assignments '.
126 'SET container_id = '.$ilDB->quote($this->getContainerId(),'integer').', '.
127 'assignment_type = '.$ilDB->quote($this->getAssignmentType(),'integer').', '.
128 'objective_id = '.$ilDB->quote($this->getObjectiveId(),'integer').', '.
129 'tst_ref_id = '.$ilDB->quote($this->getTestRefId(),'integer').' '.
130 'WHERE assignment_id = '.$ilDB->quote($this->getAssignmentId(),'integer');
131 $ilDB->manipulate($query);
132 }

References $ilDB, $query, getAssignmentId(), getAssignmentType(), getContainerId(), getObjectiveId(), and getTestRefId().

Referenced by save().

+ Here is the call graph for this function:
+ Here is the caller graph for this function:

Field Documentation

◆ $assignment_id

ilLOTestAssignment::$assignment_id = 0
private

Definition at line 12 of file class.ilLOTestAssignment.php.

Referenced by getAssignmentId().

◆ $assignment_type

ilLOTestAssignment::$assignment_type = 0
private

Definition at line 14 of file class.ilLOTestAssignment.php.

Referenced by getAssignmentType().

◆ $container_id

ilLOTestAssignment::$container_id = 0
private

Definition at line 13 of file class.ilLOTestAssignment.php.

Referenced by getContainerId().

◆ $objective_id

ilLOTestAssignment::$objective_id = 0
private

Definition at line 15 of file class.ilLOTestAssignment.php.

Referenced by getObjectiveId().

◆ $test_ref_id

ilLOTestAssignment::$test_ref_id = 0
private

Definition at line 16 of file class.ilLOTestAssignment.php.

Referenced by getTestRefId().


The documentation for this class was generated from the following file: