aboutsummaryrefslogtreecommitdiffstats
path: root/tests/dbal/migration/if_params.php
diff options
context:
space:
mode:
authorjaviexin <javiexin@gmail.com>2017-07-15 18:39:39 +0200
committerMarc Alexander <admin@m-a-styles.de>2019-05-08 22:06:34 +0200
commit5c001df3802cf906951102596f9e1d56b876d873 (patch)
tree8fe6927040829704b7af92e8c368bb2bec356768 /tests/dbal/migration/if_params.php
parente36da012645a6c376b0ecb306ee6b99e5437a410 (diff)
downloadforums-5c001df3802cf906951102596f9e1d56b876d873.tar
forums-5c001df3802cf906951102596f9e1d56b876d873.tar.gz
forums-5c001df3802cf906951102596f9e1d56b876d873.tar.bz2
forums-5c001df3802cf906951102596f9e1d56b876d873.tar.xz
forums-5c001df3802cf906951102596f9e1d56b876d873.zip
[ticket/15274] Allow "custom" migrations to use parameters
Add the possibility to have custom migrations with parameters, allowing the use of a single function for several uses. PHPBB3-15274
Diffstat (limited to 'tests/dbal/migration/if_params.php')
-rw-r--r--tests/dbal/migration/if_params.php44
1 files changed, 44 insertions, 0 deletions
diff --git a/tests/dbal/migration/if_params.php b/tests/dbal/migration/if_params.php
new file mode 100644
index 0000000000..78550d7168
--- /dev/null
+++ b/tests/dbal/migration/if_params.php
@@ -0,0 +1,44 @@
+<?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.
+*
+*/
+
+class phpbb_dbal_migration_if_params extends \phpbb\db\migration\migration
+{
+ function update_schema()
+ {
+ return array();
+ }
+
+ function update_data()
+ {
+ return array(
+ array('if', array(
+ true,
+ array('custom', array(array(&$this, 'test'), array('true'))),
+ )),
+ array('if', array(
+ false,
+ array('custom', array(array(&$this, 'test'), array('false'))),
+ )),
+ );
+ }
+
+ function test($param)
+ {
+ global $migrator_test_if_true_failed, $migrator_test_if_false_failed;
+
+ $var = 'migrator_test_if_' . $param . '_failed';
+
+ ${$var} = !${$var};
+ }
+
+}