Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F101640790
PhabricatorNamedQuery.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
Wed, Feb 12, 08:51
Size
1 KB
Mime Type
text/x-php
Expires
Fri, Feb 14, 08:51 (1 d, 23 h)
Engine
blob
Format
Raw Data
Handle
24204398
Attached To
rPH Phabricator
PhabricatorNamedQuery.php
View Options
<?php
/**
* @group search
*/
final
class
PhabricatorNamedQuery
extends
PhabricatorSearchDAO
implements
PhabricatorPolicyInterface
{
protected
$queryKey
;
protected
$queryName
;
protected
$userPHID
;
protected
$engineClassName
;
protected
$isBuiltin
=
0
;
protected
$isDisabled
=
0
;
protected
$sequence
=
0
;
public
function
getSortKey
()
{
return
sprintf
(
'~%010d%010d'
,
$this
->
sequence
,
$this
->
getID
());
}
/* -( PhabricatorPolicyInterface )----------------------------------------- */
public
function
getCapabilities
()
{
return
array
(
PhabricatorPolicyCapability
::
CAN_VIEW
,
);
}
public
function
getPolicy
(
$capability
)
{
return
PhabricatorPolicies
::
POLICY_NOONE
;
}
public
function
hasAutomaticCapability
(
$capability
,
PhabricatorUser
$viewer
)
{
if
(
$viewer
->
getPHID
()
==
$this
->
userPHID
)
{
return
true
;
}
return
false
;
}
public
function
describeAutomaticCapability
(
$capability
)
{
return
pht
(
'The queries you have saved are private. Only you can view or edit '
.
'them.'
);
}
}
Event Timeline
Log In to Comment