ILIAS  release_8 Revision v8.24
class.ilLoggingUpdateSteps8.php
Go to the documentation of this file.
1<?php
2
3declare(strict_types=1);
23{
24 protected ilDBInterface $db;
25
26 public function prepare(ilDBInterface $db): void
27 {
28 $this->db = $db;
29 }
30
34 public function step_1(): void
35 {
36 $query = 'DELETE from log_components ' .
37 'WHERE component_id = ' . $this->db->quote('lchk', ilDBConstants::T_TEXT);
38 $this->db->manipulate($query);
39 }
40}
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
Interface ilDBInterface.
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
$query