aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/develop/migration_tips.php
diff options
context:
space:
mode:
authorNils Adermann <naderman@naderman.de>2013-10-10 17:35:26 -0700
committerNils Adermann <naderman@naderman.de>2013-10-10 17:35:26 -0700
commit230c1ecb6a6598360f28163c4c046f62e0c3c92f (patch)
treec4493a0c3c827e0d4fe3f33df70125d6b88389a4 /phpBB/develop/migration_tips.php
parent446dc9b47e51bc38a6593ff399a1ba155a6b5b49 (diff)
parent3b1eccbf74a1a66bc5ab2f843d130fe6322c314e (diff)
downloadforums-230c1ecb6a6598360f28163c4c046f62e0c3c92f.tar
forums-230c1ecb6a6598360f28163c4c046f62e0c3c92f.tar.gz
forums-230c1ecb6a6598360f28163c4c046f62e0c3c92f.tar.bz2
forums-230c1ecb6a6598360f28163c4c046f62e0c3c92f.tar.xz
forums-230c1ecb6a6598360f28163c4c046f62e0c3c92f.zip
Merge pull request #1767 from EXreaction/ticket/11905
[ticket/11905] 3.1.0-a1 Migration
Diffstat (limited to 'phpBB/develop/migration_tips.php')
-rw-r--r--phpBB/develop/migration_tips.php42
1 files changed, 42 insertions, 0 deletions
diff --git a/phpBB/develop/migration_tips.php b/phpBB/develop/migration_tips.php
new file mode 100644
index 0000000000..51a579bdb5
--- /dev/null
+++ b/phpBB/develop/migration_tips.php
@@ -0,0 +1,42 @@
+<?php
+/**
+*
+* @package phpBB3
+* @copyright (c) 2013 phpBB Group
+* @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License v2
+*
+*/
+
+// This is to help with creating migration files for new versions
+// Use this to find what migrations are not depended on by any other migration
+// (the current migration tree tips)
+
+define('IN_PHPBB', true);
+$phpbb_root_path = (defined('PHPBB_ROOT_PATH')) ? PHPBB_ROOT_PATH : './../';
+$phpEx = substr(strrchr(__FILE__, '.'), 1);
+include($phpbb_root_path . 'common.' . $phpEx);
+
+$phpbb_extension_manager = $phpbb_container->get('ext.manager');
+$finder = $phpbb_extension_manager->get_finder();
+
+$migrations = $finder
+ ->core_path('phpbb/db/migration/data/')
+ ->get_classes();
+$tips = $migrations;
+
+foreach ($migrations as $migration_class)
+{
+ foreach ($migration_class::depends_on() as $dependency)
+ {
+ if (($tips_key = array_search($dependency, $tips)) !== false)
+ {
+ unset($tips[$tips_key]);
+ }
+ }
+}
+
+foreach ($tips as $migration)
+{
+ echo "\t\t\t'{$migration}',\n";
+}
+