Page Menu
Home
Phorge
Search
Configure Global Search
Log In
Files
F3295150
PhabricatorProjectsPolicyRule.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
564 B
Referenced Files
None
Subscribers
None
PhabricatorProjectsPolicyRule.php
View Options
<?php
final
class
PhabricatorProjectsPolicyRule
extends
PhabricatorProjectsBasePolicyRule
{
public
function
getRuleDescription
(
)
{
return
pht
(
'members of any project'
)
;
}
public
function
applyRule
(
PhabricatorUser
$viewer
,
$value
,
PhabricatorPolicyInterface
$object
)
{
$memberships
=
$this
->
getMemberships
(
$viewer
->
getPHID
(
)
)
;
foreach
(
$value
as
$project_phid
)
{
if
(
isset
(
$memberships
[
$project_phid
]
)
)
{
return
true
;
}
}
return
false
;
}
public
function
getRuleOrder
(
)
{
return
200
;
}
}
File Metadata
Details
Attached
Mime Type
text/x-php
Expires
Thu, Mar 27, 01:03 (1 w, 2 d ago)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
1199363
Default Alt Text
PhabricatorProjectsPolicyRule.php (564 B)
Attached To
Mode
rP Phorge
Attached
Detach File
Event Timeline
Log In to Comment