Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F99913184
PhabricatorPolicyRuleUsers.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
Mon, Jan 27, 06:19
Size
1 KB
Mime Type
text/x-php
Expires
Wed, Jan 29, 06:19 (1 d, 23 h)
Engine
blob
Format
Raw Data
Handle
23847503
Attached To
rPH Phabricator
PhabricatorPolicyRuleUsers.php
View Options
<?php
final
class
PhabricatorPolicyRuleUsers
extends
PhabricatorPolicyRule
{
public
function
getRuleDescription
()
{
return
pht
(
'users'
);
}
public
function
applyRule
(
PhabricatorUser
$viewer
,
$value
)
{
foreach
(
$value
as
$phid
)
{
if
(
$phid
==
$viewer
->
getPHID
())
{
return
true
;
}
}
return
false
;
}
public
function
getValueControlType
()
{
return
self
::
CONTROL_TYPE_TOKENIZER
;
}
public
function
getValueControlTemplate
()
{
return
array
(
'markup'
=>
new
AphrontTokenizerTemplateView
(),
'uri'
=>
'/typeahead/common/accounts/'
,
'placeholder'
=>
pht
(
'Type a user name...'
),
);
}
public
function
getRuleOrder
()
{
return
100
;
}
public
function
getValueForStorage
(
$value
)
{
PhutilTypeSpec
::
newFromString
(
'list<string>'
)->
check
(
$value
);
return
array_values
(
$value
);
}
public
function
getValueForDisplay
(
PhabricatorUser
$viewer
,
$value
)
{
if
(!
$value
)
{
return
array
();
}
$handles
=
id
(
new
PhabricatorHandleQuery
())
->
setViewer
(
$viewer
)
->
withPHIDs
(
$value
)
->
execute
();
return
mpull
(
$handles
,
'getFullName'
,
'getPHID'
);
}
}
Event Timeline
Log In to Comment