FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
phpbb/phpBB/develop/create_schema_files.php at develop · phpbb-es/phpbb · GitHub
phpbb-es
/
phpbb
Public
forked from
phpbb/phpbb
Notifications
You must be signed in to change notification settings
Fork
0
Star
1
Code
Pull requests
0
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
/
create_schema_files.php
Copy path
More file actions
More file actions
Latest commit
History
History
History
62 lines (52 loc) · 1.78 KB
Breadcrumbs
phpbb
/
phpBB
/
develop
/
create_schema_files.php
Copy path
File metadata and controls
62 lines (52 loc) · 1.78 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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
<?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 file creates new schema files for every database.
* The filenames will be prefixed with an underscore to not overwrite the current schema files.
*
* If you overwrite the original schema files please make sure you save the file with UNIX linefeeds.
*/
$
schema_path
=
dirname
(
__FILE__
) .
'
/../install/schemas/
'
;
$
supported_dbms
=
array
(
'
mssql
'
,
'
mysql_40
'
,
'
mysql_41
'
,
'
oracle
'
,
'
postgres
'
,
'
sqlite
'
,
);
$
table_prefix
=
'
phpbb_
'
;
if
(!
is_writable
(
$
schema_path
))
{
die
(
'
Schema path not writable
'
);
}
define
(
'
IN_PHPBB
'
,
true
);
$
phpbb_root_path
=
dirname
(
__FILE__
) .
'
/../
'
;
$
phpEx
=
substr
(
strrchr
(
__FILE__
,
'
.
'
),
1
);
include
(
$
phpbb_root_path
.
'
includes/constants.
'
.
$
phpEx
);
require
(
$
phpbb_root_path
.
'
phpbb/class_loader.
'
.
$
phpEx
);
$
phpbb_class_loader
=
new
\
phpbb
\
class_loader
(
'
phpbb
\\'
,
"{
$
phpbb_root_path
}
phpbb/
"
,
$
phpEx
);
$
phpbb_class_loader
->
register
();
$
finder
=
new
\
phpbb
\
finder
(
new
\
phpbb
\
filesystem
(),
$
phpbb_root_path
);
$
classes
=
$
finder
->
core_path
(
'
phpbb/
'
)
->
directory
(
'
/db/migration/data
'
)
->
get_classes
();
$
db
=
new
\
phpbb
\
db
\
driver
\
sqlite
();
$
factory
=
new
\
phpbb
\
db
\
tools
\
factory
();
$
db_tools
=
$
factory
->
get
(
$
db
,
true
);
$
schema_generator
=
new
\
phpbb
\
db
\
migration
\
schema_generator
(
$
classes
,
new
\
phpbb
\
config
\
config
(
array
()),
$
db
,
$
db_tools
,
$
phpbb_root_path
,
$
phpEx
,
$
table_prefix
);
$
schema_data
=
$
schema_generator
->
get_schema
();
$
fp
=
fopen
(
$
schema_path
.
'
schema.json
'
,
'
wb
'
);
fwrite
(
$
fp
,
json_encode
(
$
schema_data
,
JSON_PRETTY_PRINT
));
fclose
(
$
fp
);
echo
'
Successfully created schema file
'
;
Back
|
FazBrowse Home
|
New Git URL