FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
phpbb/phpBB/develop/migration_tips.php at develop · ForumHulp/phpbb · GitHub
ForumHulp
/
phpbb
Public
forked from
phpbb/phpbb
Notifications
You must be signed in to change notification settings
Fork
0
Star
0
Code
Pull requests
2
Actions
Projects
Security and quality
0
Insights
Additional navigation options
Code
Pull requests
Actions
Projects
Security and quality
Insights
Expand file tree
Breadcrumbs
phpbb
/
phpBB
/
develop
/
migration_tips.php
Copy path
More file actions
More file actions
Latest commit
History
History
History
42 lines (35 loc) · 1.01 KB
Breadcrumbs
phpbb
/
phpBB
/
develop
/
migration_tips.php
Copy path
File metadata and controls
42 lines (35 loc) · 1.01 KB
Raw
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
<?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"
;
}
Back
|
FazBrowse Home
|
New Git URL