ILIAS  release_8 Revision v8.19
All Data Structures Namespaces Files Functions Variables Modules Pages
class.ilLoggingUpdateSteps8.php
Go to the documentation of this file.
1 <?php
2 
3 declare(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 }
$query
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...