28 self::TABLE_MOUNT_INSTRUCTIONS,
32 'id' => array(
'int', $document->
getId()),
33 'title' => array(
'text', $document->
getTitle()),
37 'creation_ts' => array(
'timestamp', $document->
getCreationTs()),
41 'sorting' => array(
'int', $document->
getSorting())
51 if (!$this->db->sequenceExists(self::TABLE_MOUNT_INSTRUCTIONS)) {
52 $this->db->createSequence(self::TABLE_MOUNT_INSTRUCTIONS);
55 return $this->db->nextId(self::TABLE_MOUNT_INSTRUCTIONS);
63 $query =
"SELECT max(sorting) as max_sort FROM " . $this->db->quoteIdentifier(self::TABLE_MOUNT_INSTRUCTIONS);
66 $row = $this->db->fetchAssoc(
$result);
67 return isset($row) && !is_null($row[
'max_sort']) ? $row[
'max_sort'] : 0;
75 $query =
"SELECT * FROM " . $this->db->quoteIdentifier(self::TABLE_MOUNT_INSTRUCTIONS)
76 .
" WHERE id=" . $this->db->quote($id,
'int');
79 $record = $this->db->fetchAssoc(
$result);
93 $query =
"SELECT * FROM " . $this->db->quoteIdentifier(self::TABLE_MOUNT_INSTRUCTIONS)
94 .
" WHERE lng=" . $this->db->quote($language,
'text');
97 $record = $this->db->fetchAssoc(
$result);
111 $query =
"SELECT * FROM " . $this->db->quoteIdentifier(self::TABLE_MOUNT_INSTRUCTIONS) .
" ORDER BY sorting";
114 $document_list = array();
115 while ($record = $this->db->fetchAssoc(
$result)) {
119 return $document_list;
127 $query =
"SELECT * FROM " . $this->db->quoteIdentifier(self::TABLE_MOUNT_INSTRUCTIONS)
128 .
" WHERE lng=" . $this->db->quote($language,
'text');
131 $record = $this->db->fetchAssoc(
$result);
133 return ($record == null ? 0 : $record[
'id']);
143 self::TABLE_MOUNT_INSTRUCTIONS,
147 'title' => array(
'text', $document->
getTitle()),
149 'creation_ts' => array(
'timestamp', $document->
getCreationTs()),
153 'sorting' => array(
'int', $document->
getSorting())
158 'id' => array(
'int', $document->
getId()),
170 self::TABLE_MOUNT_INSTRUCTIONS,
174 'sorting' => array(
'int', $a_new_sorting_value)
179 'id' => array(
'int', $id),
189 $query =
"DELETE FROM " . $this->db->quoteIdentifier(self::TABLE_MOUNT_INSTRUCTIONS)
190 .
' WHERE id=' . $this->db->quote($id,
'integer');
192 $this->db->manipulate(
$query);
206 $result[
'uploaded_instructions'],
207 $result[
'processed_instructions'],
209 $result[
'creation_ts'],
210 $result[
'modification_ts'],
211 $result[
'owner_usr_id'],
212 $result[
'last_modification_usr_id'],
getUploadedInstructions()
const TABLE_MOUNT_INSTRUCTIONS
getMountInstructionsByLanguage(string $language)
__construct(ilDBInterface $a_db)
ilWebDAVMountInstructionsRepository constructor.
doMountInstructionsExistByLanguage(string $language)
deleteMountInstructionsById(int $id)
getProcessedInstructions()
buildDocumentFromDatabaseRecord(array $result)
Fills document with results array from database.
Interface ilWebDAVMountInstructionsRepository.
getMountInstructionsDocumentById(int $id)
updateMountInstructions(ilWebDAVMountInstructionsDocument $document)
getNextMountInstructionsDocumentId()
getHighestSortingNumber()
createMountInstructionsDocumentEntry(ilWebDAVMountInstructionsDocument $document)
getLastModificationUsrId()
getAllMountInstructions()
updateSortingValueById(int $id, int $a_new_sorting_value)