◆ __construct()
◆ createOrUpdateEntry()
ILIAS\Glossary\Flashcard\FlashcardBoxDBRepository::createOrUpdateEntry |
( |
Box |
$box | ) |
|
◆ deleteAllGlossaryEntries()
ILIAS\Glossary\Flashcard\FlashcardBoxDBRepository::deleteAllGlossaryEntries |
( |
int |
$glo_id | ) |
|
Definition at line 99 of file class.FlashcardBoxDBRepository.php.
References $q.
102 $q =
"DELETE FROM glo_flashcard_box " .
103 " WHERE glo_id = " . $this->db->quote($glo_id,
"integer");
104 $this->db->manipulate(
$q);
◆ deleteAllUserEntries()
ILIAS\Glossary\Flashcard\FlashcardBoxDBRepository::deleteAllUserEntries |
( |
int |
$user_id | ) |
|
◆ deleteEntries()
ILIAS\Glossary\Flashcard\FlashcardBoxDBRepository::deleteEntries |
( |
int |
$glo_id, |
|
|
int |
$user_id |
|
) |
| |
Definition at line 81 of file class.FlashcardBoxDBRepository.php.
References $q.
85 $q =
"DELETE FROM glo_flashcard_box " .
86 " WHERE glo_id = " . $this->db->quote($glo_id,
"integer") .
87 " AND user_id = " . $this->db->quote(
$user_id,
"integer");
88 $this->db->manipulate(
$q);
◆ getEntry()
ILIAS\Glossary\Flashcard\FlashcardBoxDBRepository::getEntry |
( |
int |
$box_nr, |
|
|
int |
$user_id, |
|
|
int |
$glo_id |
|
) |
| |
◆ getFromRecord()
ILIAS\Glossary\Flashcard\FlashcardBoxDBRepository::getFromRecord |
( |
array |
$rec | ) |
|
|
protected |
The documentation for this class was generated from the following file: