aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/phpbb/db
diff options
context:
space:
mode:
authorMarc Alexander <admin@m-a-styles.de>2017-01-07 00:20:18 +0100
committerMarc Alexander <admin@m-a-styles.de>2017-01-07 00:20:18 +0100
commit44f130808fc8ce9d125094d5294355d2b014014a (patch)
treebefb81e1a7022af32452871677629bbba63fdd04 /phpBB/phpbb/db
parente096137537d1526ae914c73c66619cd1821c2f7a (diff)
parent743d3af3c52f21a47795b76598b0136ad261839a (diff)
downloadforums-44f130808fc8ce9d125094d5294355d2b014014a.tar
forums-44f130808fc8ce9d125094d5294355d2b014014a.tar.gz
forums-44f130808fc8ce9d125094d5294355d2b014014a.tar.bz2
forums-44f130808fc8ce9d125094d5294355d2b014014a.tar.xz
forums-44f130808fc8ce9d125094d5294355d2b014014a.zip
Merge pull request #4618 from marc1706/ticket/14961
[ticket/14961] Add cookie notice as enablable feature
Diffstat (limited to 'phpBB/phpbb/db')
-rw-r--r--phpBB/phpbb/db/migration/data/v320/cookie_notice.php31
1 files changed, 31 insertions, 0 deletions
diff --git a/phpBB/phpbb/db/migration/data/v320/cookie_notice.php b/phpBB/phpbb/db/migration/data/v320/cookie_notice.php
new file mode 100644
index 0000000000..75cb03b3ef
--- /dev/null
+++ b/phpBB/phpbb/db/migration/data/v320/cookie_notice.php
@@ -0,0 +1,31 @@
+<?php
+/**
+*
+* This file is part of the phpBB Forum Software package.
+*
+* @copyright (c) phpBB Limited <https://www.phpbb.com>
+* @license GNU General Public License, version 2 (GPL-2.0)
+*
+* For full copyright and license information, please see
+* the docs/CREDITS.txt file.
+*
+*/
+
+namespace phpbb\db\migration\data\v320;
+
+class cookie_notice extends \phpbb\db\migration\migration
+{
+ static public function depends_on()
+ {
+ return array(
+ '\phpbb\db\migration\data\v320\v320rc2',
+ );
+ }
+
+ public function update_data()
+ {
+ return array(
+ array('config.add', array('cookie_notice', false)),
+ );
+ }
+}