diff options
author | Nathan Guse <nathaniel.guse@gmail.com> | 2013-10-03 20:30:11 -0700 |
---|---|---|
committer | Nathan Guse <nathaniel.guse@gmail.com> | 2013-10-03 20:30:11 -0700 |
commit | b54d0f2da61c22df1e6a117360a9681c7f6eabb3 (patch) | |
tree | f7494568b0160d7c37664ec05dd41eb9f5929e97 /phpBB | |
parent | 818296cfc93da08e54b962f045c0b7647a5e3c59 (diff) | |
parent | 16d6dc2e7101aba6c08183f2acca2592ec8e04f5 (diff) | |
download | forums-b54d0f2da61c22df1e6a117360a9681c7f6eabb3.tar forums-b54d0f2da61c22df1e6a117360a9681c7f6eabb3.tar.gz forums-b54d0f2da61c22df1e6a117360a9681c7f6eabb3.tar.bz2 forums-b54d0f2da61c22df1e6a117360a9681c7f6eabb3.tar.xz forums-b54d0f2da61c22df1e6a117360a9681c7f6eabb3.zip |
Merge pull request #1704 from dhruvgoel92/ticket/11344
[ticket/11344] Add migration to remove acp_style_components module in 3.1
Diffstat (limited to 'phpBB')
-rw-r--r-- | phpBB/phpbb/db/migration/data/v310/acp_style_components_module.php | 42 |
1 files changed, 42 insertions, 0 deletions
diff --git a/phpBB/phpbb/db/migration/data/v310/acp_style_components_module.php b/phpBB/phpbb/db/migration/data/v310/acp_style_components_module.php new file mode 100644 index 0000000000..9f168f4fd6 --- /dev/null +++ b/phpBB/phpbb/db/migration/data/v310/acp_style_components_module.php @@ -0,0 +1,42 @@ +<?php +/** +* +* @package migration +* @copyright (c) 2013 phpBB Group +* @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License v2 +* +*/ + +namespace phpbb\db\migration\data\v310; + +class acp_style_components_module extends \phpbb\db\migration\migration +{ + public function effectively_installed() + { + $sql = 'SELECT module_id + FROM ' . MODULES_TABLE . " + WHERE module_class = 'acp' + AND module_langname = 'ACP_STYLE_COMPONENTS'"; + $result = $this->db->sql_query($sql); + $module_id = $this->db->sql_fetchfield('module_id'); + $this->db->sql_freeresult($result); + + return $module_id == false; + } + + static public function depends_on() + { + return array('\phpbb\db\migration\data\v310\dev'); + } + + public function update_data() + { + return array( + array('module.remove', array( + 'acp', + false, + 'ACP_STYLE_COMPONENTS', + )), + ); + } +} |