Page Menu
Home
Phorge
Search
Configure Global Search
Log In
Files
F3295043
PhabricatorSearchBaseController.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
878 B
Referenced Files
None
Subscribers
None
PhabricatorSearchBaseController.php
View Options
<?php
abstract
class
PhabricatorSearchBaseController
extends
PhabricatorController
{
protected
function
loadRelationshipObject
(
)
{
$request
=
$this
->
getRequest
(
)
;
$viewer
=
$this
->
getViewer
(
)
;
$phid
=
$request
->
getURIData
(
'sourcePHID'
)
;
return
id
(
new
PhabricatorObjectQuery
(
)
)
->
setViewer
(
$viewer
)
->
withPHIDs
(
array
(
$phid
)
)
->
requireCapabilities
(
array
(
PhabricatorPolicyCapability
::
CAN_VIEW
,
PhabricatorPolicyCapability
::
CAN_EDIT
,
)
)
->
executeOne
(
)
;
}
protected
function
loadRelationship
(
$object
)
{
$request
=
$this
->
getRequest
(
)
;
$viewer
=
$this
->
getViewer
(
)
;
$relationship_key
=
$request
->
getURIData
(
'relationshipKey'
)
;
$list
=
PhabricatorObjectRelationshipList
::
newForObject
(
$viewer
,
$object
)
;
return
$list
->
getRelationship
(
$relationship_key
)
;
}
}
File Metadata
Details
Attached
Mime Type
text/x-php
Expires
Thu, Mar 27, 00:42 (1 w, 2 d ago)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
1195065
Default Alt Text
PhabricatorSearchBaseController.php (878 B)
Attached To
Mode
rP Phorge
Attached
Detach File
Event Timeline
Log In to Comment