ILIAS  release_9 Revision v9.13-25-g2c18ec4c24f
class.ilStyle9HotfixDBUpdateSteps.php
Go to the documentation of this file.
1 <?php
2 
17 
19 {
20  protected \ilDBInterface $db;
21 
22  public function prepare(\ilDBInterface $db): void
23  {
24  $this->db = $db;
25  }
26 
27  public function step_1()
28  {
29  $this->db->update(
30  "style_data",
31  [
32  "uptodate" => ["integer", 0]
33  ],
34  [ // where
35  "uptodate" => ["integer", 1]
36  ]
37  );
38  }
39 
40 }
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...
prepare(\ilDBInterface $db)
Prepare the execution of the steps.