ILIAS  trunk Revision v11.0_alpha-1702-gfd3ecb7f852
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
AbandonLoadDependantSessionDatabaseUpdateObjective.php
Go to the documentation of this file.
1 <?php
2 
19 declare(strict_types=1);
20 
22 
24 use ilDBInterface;
25 
27 {
28  protected ilDBInterface $db;
29 
30  public function prepare(ilDBInterface $db): void
31  {
32  $this->db = $db;
33  }
34 
35  public function step_1(): void
36  {
37  $this->db->manipulate(
38  'DELETE FROM settings WHERE ' . $this->db->in(
39  'keyword',
40  [
41  'session_handling_type',
42  'session_max_count',
43  'session_min_idle',
44  'session_max_idle',
45  'session_max_idle_after_first_request'
46  ]
47  )
48  );
49 
50  if ($this->db->tableExists('usr_session_log')) {
51  $this->db->dropTable('usr_session_log', false);
52  }
53 
54  if ($this->db->tableColumnExists('usr_session_stats', 'max_sessions')) {
55  $this->db->dropTableColumn('usr_session_stats', 'max_sessions');
56  }
57 
58  if ($this->db->tableColumnExists('usr_session_stats', 'closed_limit')) {
59  $this->db->dropTableColumn('usr_session_stats', 'closed_limit');
60  }
61 
62  if ($this->db->tableColumnExists('usr_session_stats', 'closed_idle')) {
63  $this->db->dropTableColumn('usr_session_stats', 'closed_idle');
64  }
65 
66  if ($this->db->tableColumnExists('usr_session_stats', 'closed_idle_first')) {
67  $this->db->dropTableColumn('usr_session_stats', 'closed_idle_first');
68  }
69  }
70 }