40 lines
885 B
PHP
Executable file
40 lines
885 B
PHP
Executable file
<?php
|
|
|
|
namespace pedodev\tagging\migrations;
|
|
|
|
class dev_1 extends \phpbb\db\migration\migration
|
|
{
|
|
public function effectively_installed()
|
|
{
|
|
return isset($this->config['pedodev_tagging']);
|
|
}
|
|
|
|
static public function depends_on()
|
|
{
|
|
return ['\phpbb\db\migration\data\v330\v330'];
|
|
}
|
|
|
|
public function update_data()
|
|
{
|
|
return [
|
|
|
|
['config.add', ['pedodev_tagging', 1]],
|
|
|
|
['module.add', [
|
|
'acp',
|
|
'ACP_CAT_DOT_MODS',
|
|
'ACP_TAGGING_TITLE'
|
|
]],
|
|
|
|
['module.add', [
|
|
'acp',
|
|
'ACP_TAGGING_TITLE',
|
|
[
|
|
'module_basename' => '\pedodev\tagging\acp\main_module',
|
|
'modes' => ['settings'],
|
|
],
|
|
]],
|
|
|
|
];
|
|
}
|
|
}
|