aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/phpbb/db
diff options
context:
space:
mode:
authorLukasz <luki_9@wp.pl>2013-11-07 22:06:48 +0100
committerLukasz <luki_9@wp.pl>2013-11-08 21:57:12 +0100
commita353673e7c3e5a5a4720bea008e1df60c1401ae2 (patch)
tree5affa2282a396d6b55421ab044c1a37948e3a379 /phpBB/phpbb/db
parent9328d42809ff85d654f55cbf53218301a5d13491 (diff)
downloadforums-a353673e7c3e5a5a4720bea008e1df60c1401ae2.tar
forums-a353673e7c3e5a5a4720bea008e1df60c1401ae2.tar.gz
forums-a353673e7c3e5a5a4720bea008e1df60c1401ae2.tar.bz2
forums-a353673e7c3e5a5a4720bea008e1df60c1401ae2.tar.xz
forums-a353673e7c3e5a5a4720bea008e1df60c1401ae2.zip
[ticket/12005] Remove PM popup module from DB
PHPBB3-12005
Diffstat (limited to 'phpBB/phpbb/db')
-rw-r--r--phpBB/phpbb/db/migration/data/v310/ucp_popuppm_module.php42
1 files changed, 42 insertions, 0 deletions
diff --git a/phpBB/phpbb/db/migration/data/v310/ucp_popuppm_module.php b/phpBB/phpbb/db/migration/data/v310/ucp_popuppm_module.php
new file mode 100644
index 0000000000..f8ada6c6f5
--- /dev/null
+++ b/phpBB/phpbb/db/migration/data/v310/ucp_popuppm_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 ucp_popuppm_module extends \phpbb\db\migration\migration
+{
+ public function effectively_installed()
+ {
+ $sql = 'SELECT module_id
+ FROM ' . MODULES_TABLE . "
+ WHERE module_class = 'ucp'
+ AND module_langname = 'UCP_PM_POPUP_TITLE'";
+ $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(
+ 'ucp',
+ 'UCP_PM',
+ 'UCP_PM_POPUP_TITLE',
+ )),
+ );
+ }
+}