ILIAS  release_5-3 Revision v5.3.23-19-g915713cf615
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 type $ilDB. More...
 
 update ()
 Update assignment type $ilDB. More...
 
 delete ()
 Delete assignment type $ilDB. More...
 
 read ()
 Read db entry 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.

References read(), and setAssignmentId().

24  {
25  $this->setAssignmentId($a_id);
26  $this->read();
27  }
read()
Read db entry type $ilDB.
+ 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 175 of file class.ilLOTestAssignment.php.

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

176  {
177  include_once './Services/CopyWizard/classes/class.ilCopyWizardOptions.php';
179  $mappings = $options->getMappings();
180 
181  if (!array_key_exists($this->getTestRefId(), $mappings)) {
182  return false;
183  }
184 
185  $copy = new ilLOTestAssignment();
186  $copy->setContainerId($a_target_id);
187  $copy->setAssignmentType($this->getAssignmentType());
188  $copy->setObjectiveId($a_objective_id);
189  $copy->setTestRefId($mappings[$this->getTestRefId()]);
190  $copy->create();
191  }
static _getInstance($a_copy_id)
Get instance of copy wizard options.
Settings for LO courses.
if(!isset($_REQUEST['ReturnTo'])) if(!isset($_REQUEST['AuthId'])) $options
Definition: as_login.php:20
+ Here is the call graph for this function:

◆ create()

ilLOTestAssignment::create ( )

Create new aassignment type $ilDB.

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

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

Referenced by save().

97  {
98  global $ilDB;
99 
100  $this->setAssignmentId($ilDB->nextId('loc_tst_assignments'));
101  $query = 'INSERT INTO loc_tst_assignments (assignment_id, container_id, assignment_type, objective_id, tst_ref_id) ' .
102  'VALUES ( ' .
103  $ilDB->quote($this->getAssignmentId(), 'integer') . ', ' .
104  $ilDB->quote($this->getContainerId(), 'integer') . ', ' .
105  $ilDB->quote($this->getAssignmentType(), 'integer') . ', ' .
106  $ilDB->quote($this->getObjectiveId(), 'integer') . ', ' .
107  $ilDB->quote($this->getTestRefId(), 'integer') . ' ' .
108  ') ';
109  $GLOBALS['ilLog']->write($query);
110  $ilDB->manipulate($query);
111  }
$GLOBALS['loaded']
Global hash that tracks already loaded includes.
$query
global $ilDB
+ Here is the call graph for this function:
+ Here is the caller graph for this function:

◆ delete()

ilLOTestAssignment::delete ( )

Delete assignment type $ilDB.

Returns
boolean

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

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

136  {
137  global $ilDB;
138 
139  $query = 'DELETE FROM loc_tst_assignments ' .
140  'WHERE assignment_id = ' . $ilDB->quote($this->getAssignmentId(), 'integer') . ' ';
141  $ilDB->manipulate($query);
142  return true;
143  }
$query
global $ilDB
+ 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 type $ilDB.

Returns
boolean

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

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

Referenced by __construct().

151  {
152  global $ilDB;
153 
154  if (!$this->getAssignmentId()) {
155  return false;
156  }
157 
158  $query = 'SELECT * FROM loc_tst_assignments ' .
159  'WHERE assignment_id = ' . $ilDB->quote($this->getAssignmentId(), 'integer') . ' ';
160  $res = $ilDB->query($query);
161  while ($row = $res->fetchRow(ilDBConstants::FETCHMODE_OBJECT)) {
162  $this->setContainerId($row->container_id);
163  $this->setObjectiveId($row->objective_id);
164  $this->setAssignmentType($row->assignment_type);
165  $this->setTestRefId($row->tst_ref_id);
166  }
167  return true;
168  }
foreach($_POST as $key=> $value) $res
$query
global $ilDB
+ 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.

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

84  {
85  if ($this->getAssignmentId()) {
86  return $this->update();
87  } else {
88  return $this->create();
89  }
90  }
update()
Update assignment type $ilDB.
create()
Create new aassignment type $ilDB.
+ Here is the call graph for this function:

◆ setAssignmentId()

ilLOTestAssignment::setAssignmentId (   $a_id)

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

Referenced by __construct(), and create().

30  {
31  $this->assignment_id = $a_id;
32  }
+ Here is the caller graph for this function:

◆ setAssignmentType()

ilLOTestAssignment::setAssignmentType (   $a_type)

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

References $a_type.

Referenced by read().

50  {
51  $this->assignment_type = $a_type;
52  }
$a_type
Definition: workflow.php:92
+ Here is the caller graph for this function:

◆ setContainerId()

ilLOTestAssignment::setContainerId (   $a_id)

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

Referenced by read().

40  {
41  $this->container_id = $a_id;
42  }
+ Here is the caller graph for this function:

◆ setObjectiveId()

ilLOTestAssignment::setObjectiveId (   $a_id)

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

Referenced by read().

60  {
61  $this->objective_id = $a_id;
62  }
+ Here is the caller graph for this function:

◆ setTestRefId()

ilLOTestAssignment::setTestRefId (   $a_id)

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

Referenced by read().

70  {
71  $this->test_ref_id = $a_id;
72  }
+ Here is the caller graph for this function:

◆ update()

ilLOTestAssignment::update ( )

Update assignment type $ilDB.

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

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

Referenced by save().

118  {
119  global $ilDB;
120 
121  $query = 'UPDATE loc_tst_assignments ' .
122  'SET container_id = ' . $ilDB->quote($this->getContainerId(), 'integer') . ', ' .
123  'assignment_type = ' . $ilDB->quote($this->getAssignmentType(), 'integer') . ', ' .
124  'objective_id = ' . $ilDB->quote($this->getObjectiveId(), 'integer') . ', ' .
125  'tst_ref_id = ' . $ilDB->quote($this->getTestRefId(), 'integer') . ' ' .
126  'WHERE assignment_id = ' . $ilDB->quote($this->getAssignmentId(), 'integer');
127  $ilDB->manipulate($query);
128  }
$query
global $ilDB
+ 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: