Page Menu
Home
In-Portal Phabricator
Search
Configure Global Search
Log In
Files
F1171760
build_class_map.php
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Award Token
Flag For Later
Subscribers
None
File Metadata
Details
File Info
Storage
Attached
Created
Sun, Sep 28, 1:25 PM
Size
448 B
Mime Type
text/x-php
Expires
Tue, Sep 30, 1:25 PM (1 d, 11 h)
Engine
blob
Format
Raw Data
Handle
759312
Attached To
rINP In-Portal
build_class_map.php
View Options
<?php
use
Intechnic\InPortal\Core\kernel\utility\ClassDiscovery\ClassMapBuilder
;
if
(
PHP_SAPI
!==
'cli'
)
{
exit
(
64
);
}
$_GET
[
'full_init'
]
=
0
;
// See INP-1413.
define
(
'FULL_PATH'
,
realpath
(
dirname
(
__FILE__
)
.
'/..'
));
require_once
(
FULL_PATH
.
'/core/kernel/startup.php'
);
$application
=&
kApplication
::
Instance
();
$application
->
Init
();
foreach
(
ClassMapBuilder
::
createBuilders
()
as
$class_map_builder
)
{
$class_map_builder
->
build
();
}
Event Timeline
Log In to Comment