Page Menu
Home
Phorge
Search
Configure Global Search
Log In
Files
F2992152
PhabricatorConfigConfigPHIDType.php
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Award Token
Flag For Later
Advanced/Developer...
View Handle
View Hovercard
Size
852 B
Referenced Files
None
Subscribers
None
PhabricatorConfigConfigPHIDType.php
View Options
<?php
final
class
PhabricatorConfigConfigPHIDType
extends
PhabricatorPHIDType
{
const
TYPECONST
=
'CONF'
;
public
function
getTypeName
(
)
{
return
pht
(
'Config'
)
;
}
public
function
newObject
(
)
{
return
new
PhabricatorConfigEntry
(
)
;
}
public
function
getPHIDTypeApplicationClass
(
)
{
return
PhabricatorConfigApplication
::
class
;
}
protected
function
buildQueryForObjects
(
PhabricatorObjectQuery
$query
,
array
$phids
)
{
return
id
(
new
PhabricatorConfigEntryQuery
(
)
)
->
withPHIDs
(
$phids
)
;
}
public
function
loadHandles
(
PhabricatorHandleQuery
$query
,
array
$handles
,
array
$objects
)
{
foreach
(
$handles
as
$phid
=>
$handle
)
{
$entry
=
$objects
[
$phid
]
;
$key
=
$entry
->
getConfigKey
(
)
;
$handle
->
setName
(
$key
)
;
$handle
->
setURI
(
"/config/edit/{$key}/"
)
;
}
}
}
File Metadata
Details
Attached
Mime Type
text/x-php
Expires
Sun, Feb 23, 05:57 (1 d, 12 h ago)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
1144684
Default Alt Text
PhabricatorConfigConfigPHIDType.php (852 B)
Attached To
Mode
rP Phorge
Attached
Detach File
Event Timeline
Log In to Comment