1 | <?php |
||
13 | class install_acp_module extends \phpbb\db\migration\migration |
||
14 | { |
||
15 | public function effectively_installed() |
||
16 | { |
||
17 | $sql = 'SELECT module_id |
||
18 | FROM ' . $this->table_prefix . "modules |
||
19 | WHERE module_class = 'acp' |
||
20 | AND module_langname = 'ACP_ADMANAGEMENT_TITLE'"; |
||
21 | $result = $this->db->sql_query($sql); |
||
22 | $module_id = (int) $this->db->sql_fetchfield('module_id'); |
||
23 | $this->db->sql_freeresult($result); |
||
24 | |||
25 | return $module_id; |
||
26 | } |
||
27 | |||
28 | static public function depends_on() |
||
32 | |||
33 | public function update_data() |
||
51 | } |
||
52 |