Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F92593531
moduleutils.php
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Award Token
Subscribers
None
File Metadata
Details
File Info
Storage
Attached
Created
Thu, Nov 21, 19:39
Size
1 KB
Mime Type
text/x-php
Expires
Sat, Nov 23, 19:39 (2 d)
Engine
blob
Format
Raw Data
Handle
22465758
Attached To
rPHU libphutil
moduleutils.php
View Options
<?php
/**
* @group library
*/
function
phutil_get_library_root
(
$library
)
{
$bootloader
=
PhutilBootloader
::
getInstance
();
return
$bootloader
->
getLibraryRoot
(
$library
);
}
/**
* @group library
*/
function
phutil_get_library_root_for_path
(
$path
)
{
foreach
(
Filesystem
::
walkToRoot
(
$path
)
as
$dir
)
{
if
(@
file_exists
(
$dir
.
'/__phutil_library_init__.php'
))
{
return
$dir
;
}
}
return
null
;
}
/**
* @group library
*/
function
phutil_get_library_name_for_root
(
$path
)
{
$path
=
rtrim
(
Filesystem
::
resolvePath
(
$path
),
'/'
);
$bootloader
=
PhutilBootloader
::
getInstance
();
$libraries
=
$bootloader
->
getAllLibraries
();
foreach
(
$libraries
as
$library
)
{
$root
=
$bootloader
->
getLibraryRoot
(
$library
);
if
(
rtrim
(
Filesystem
::
resolvePath
(
$root
),
'/'
)
==
$path
)
{
return
$library
;
}
}
return
null
;
}
/**
* Warns about use of deprecated behavior.
*
* @group library
*/
function
phutil_deprecated
(
$what
,
$why
)
{
PhutilErrorHandler
::
dispatchErrorMessage
(
PhutilErrorHandler
::
DEPRECATED
,
$what
,
array
(
'why'
=>
$why
,
));
}
Event Timeline
Log In to Comment