ILIAS  release_9 Revision v9.13-25-g2c18ec4c24f
ilStudyProgrammePCStatusInfoUpdateSteps.php
Go to the documentation of this file.
1 <?php
2 
19 declare(strict_types=1);
20 
22 {
23  public const TABLE_NAME = 'copg_pobj_def';
24 
25  protected ilDBInterface $db;
26 
27  public function prepare(ilDBInterface $db): void
28  {
29  $this->db = $db;
30  }
31 
32  public function step_1(): void
33  {
34  $this->db->manipulate(
35  "INSERT INTO " . self::TABLE_NAME . " VALUES ('prg','ilContainerPage','classes','Modules/StudyProgramme')"
36  );
37  }
38 }