3 declare(strict_types=1);
37 self::TABLE_MOUNT_INSTRUCTIONS,
41 'id' => array(
'int', $document->
getId()),
42 'title' => array(
'text', $document->
getTitle()),
46 'creation_ts' => array(
'timestamp', $document->
getCreationTs()),
50 'sorting' => array(
'int', $document->
getSorting())
57 if (!$this->db->sequenceExists(self::TABLE_MOUNT_INSTRUCTIONS)) {
58 $this->db->createSequence(self::TABLE_MOUNT_INSTRUCTIONS);
61 return $this->db->nextId(self::TABLE_MOUNT_INSTRUCTIONS);
66 $query =
"SELECT max(sorting) as max_sort FROM " . $this->db->quoteIdentifier(self::TABLE_MOUNT_INSTRUCTIONS);
67 $result = $this->db->query(
$query);
69 $row = $this->db->fetchAssoc($result);
70 return isset($row) && !is_null($row[
'max_sort']) ? (
int) $row[
'max_sort'] : 0;
75 $query =
"SELECT * FROM " . $this->db->quoteIdentifier(self::TABLE_MOUNT_INSTRUCTIONS)
76 .
" WHERE id=" . $this->db->quote($id,
'int');
78 $result = $this->db->query(
$query);
79 $record = $this->db->fetchAssoc($result);
90 $query =
"SELECT * FROM " . $this->db->quoteIdentifier(self::TABLE_MOUNT_INSTRUCTIONS)
91 .
" WHERE lng=" . $this->db->quote($language,
'text');
93 $result = $this->db->query(
$query);
94 $record = $this->db->fetchAssoc($result);
105 $query =
"SELECT * FROM " . $this->db->quoteIdentifier(self::TABLE_MOUNT_INSTRUCTIONS) .
" ORDER BY sorting";
106 $result = $this->db->query(
$query);
108 $document_list = array();
109 while ($record = $this->db->fetchAssoc($result)) {
113 return $document_list;
118 $query =
"SELECT id FROM " . $this->db->quoteIdentifier(self::TABLE_MOUNT_INSTRUCTIONS)
119 .
" WHERE lng=" . $this->db->quote($language,
'text');
121 $result = $this->db->query(
$query);
122 $record = $this->db->fetchAssoc($result);
124 return ($record === null ? 0 : (
int) $record[
'id']);
131 self::TABLE_MOUNT_INSTRUCTIONS,
135 'title' => array(
'text', $document->
getTitle()),
137 'creation_ts' => array(
'timestamp', $document->
getCreationTs()),
141 'sorting' => array(
'int', $document->
getSorting())
146 'id' => array(
'int', $document->
getId()),
155 self::TABLE_MOUNT_INSTRUCTIONS,
159 'sorting' => array(
'int', $a_new_sorting_value)
164 'id' => array(
'int', $id),
171 $query =
"DELETE FROM " . $this->db->quoteIdentifier(self::TABLE_MOUNT_INSTRUCTIONS)
172 .
' WHERE id=' . $this->db->quote($id,
'integer');
174 $this->db->manipulate(
$query);
182 $result[
'uploaded_instructions'],
183 $result[
'processed_instructions'],
185 $result[
'creation_ts'],
186 $result[
'modification_ts'],
187 (
int) $result[
'owner_usr_id'],
188 (
int) $result[
'last_modification_usr_id'],
189 (
int) $result[
'sorting']
getUploadedInstructions()
const TABLE_MOUNT_INSTRUCTIONS
getMountInstructionsByLanguage(string $language)
__construct(ilDBInterface $a_db)
doMountInstructionsExistByLanguage(string $language)
deleteMountInstructionsById(int $id)
getProcessedInstructions()
buildDocumentFromDatabaseRecord(array $result)
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
getMountInstructionsDocumentById(int $id)
updateMountInstructions(ilWebDAVMountInstructionsDocument $document)
getNextMountInstructionsDocumentId()
getHighestSortingNumber()
$id
plugin.php for ilComponentBuildPluginInfoObjectiveTest::testAddPlugins
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
createMountInstructionsDocumentEntry(ilWebDAVMountInstructionsDocument $document)
getLastModificationUsrId()
getAllMountInstructions()
updateSortingValueById(int $id, int $a_new_sorting_value)