diff options
| author | Joas Schilling <nickvergessen@gmx.de> | 2014-06-10 11:43:45 +0200 |
|---|---|---|
| committer | Joas Schilling <nickvergessen@gmx.de> | 2014-06-10 11:43:45 +0200 |
| commit | 3c68da275bb68265a3f377e85d4e150b688d77f0 (patch) | |
| tree | 82ff1306181445a2c4036fa574a28b0c235d057d /phpBB/develop/migration_tips.php | |
| parent | 01a79fe1dc410bcde20e4876d95dd68b2bb33335 (diff) | |
| parent | 0aa6381834724e9d56d15a11b608b3c0c45e4d37 (diff) | |
| download | forums-3c68da275bb68265a3f377e85d4e150b688d77f0.tar forums-3c68da275bb68265a3f377e85d4e150b688d77f0.tar.gz forums-3c68da275bb68265a3f377e85d4e150b688d77f0.tar.bz2 forums-3c68da275bb68265a3f377e85d4e150b688d77f0.tar.xz forums-3c68da275bb68265a3f377e85d4e150b688d77f0.zip | |
Merge branch 'develop-ascraeus' into develop
* develop-ascraeus:
[ticket/12664] Refactor develop/migration_tips.php into a console command.
Diffstat (limited to 'phpBB/develop/migration_tips.php')
| -rw-r--r-- | phpBB/develop/migration_tips.php | 46 |
1 files changed, 0 insertions, 46 deletions
diff --git a/phpBB/develop/migration_tips.php b/phpBB/develop/migration_tips.php deleted file mode 100644 index fdb1e4544d..0000000000 --- a/phpBB/develop/migration_tips.php +++ /dev/null @@ -1,46 +0,0 @@ -<?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. -* -*/ - -// 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"; -} - |
