ILIAS  trunk Revision v11.0_alpha-1715-g7fc467680fb
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
class.ilAsqService.php
Go to the documentation of this file.
1 <?php
2 
28 {
33  public function fetchNextAuthoringCommandClass($nextClass): string
34  {
35  global $DIC; /* @var ILIAS\DI\Container $DIC */
36 
37  $row = $DIC->database()->fetchAssoc($DIC->database()->queryF(
38  "SELECT COUNT(question_type_id) cnt FROM qpl_qst_type WHERE ctrl_class = %s",
39  array('text'),
40  array($nextClass)
41  ));
42 
43  if ($row['cnt']) {
44  // current next class is indeed an authoring ctrl class,
45  // return it to have the switch(nextclass) case matching
46  return $nextClass;
47  }
48 
49  // the interface that NOT represents a valid ctrl class,
50  // this will lead to a non matching switch(nextclass) case
51  return 'ilasqquestionauthoring';
52  }
53 
58  public function determineQuestionTypeByQtiItem(ilQTIItem $qtiItem): string
59  {
60  // the qti service parses ILIAS question types, so use it
61  // although this may get changed in the future
62  return $qtiItem->getQuestiontype();
63  }
64 
70  public function questionTitleExists($parentObjectId, $questionTitle): bool
71  {
72  global $DIC; /* @var ILIAS\DI\Container $DIC */
73 
74  $row = $DIC->database()->fetchAssoc($DIC->database()->queryF(
75  "SELECT COUNT(question_id) cnt FROM qpl_questions WHERE obj_fi = %s AND title = %s",
76  array('integer', 'text'),
77  array($parentObjectId, $questionTitle)
78  ));
79 
80  return $row['cnt'] > 0;
81  }
82 }
determineQuestionTypeByQtiItem(ilQTIItem $qtiItem)
global $DIC
Definition: shib_login.php:22
fetchNextAuthoringCommandClass($nextClass)
questionTitleExists($parentObjectId, $questionTitle)