Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F98136926
PhabricatorEditor.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
Fri, Jan 10, 04:48
Size
721 B
Mime Type
text/x-php
Expires
Sun, Jan 12, 04:48 (2 d)
Engine
blob
Format
Raw Data
Handle
23485500
Attached To
rPH Phabricator
PhabricatorEditor.php
View Options
<?php
abstract
class
PhabricatorEditor
extends
Phobject
{
private
$actor
;
private
$excludeMailRecipientPHIDs
=
array
();
final
public
function
setActor
(
PhabricatorUser
$actor
)
{
$this
->
actor
=
$actor
;
return
$this
;
}
final
public
function
getActor
()
{
return
$this
->
actor
;
}
final
public
function
requireActor
()
{
$actor
=
$this
->
getActor
();
if
(!
$actor
)
{
throw
new
Exception
(
'You must setActor()!'
);
}
return
$actor
;
}
final
public
function
setExcludeMailRecipientPHIDs
(
$phids
)
{
$this
->
excludeMailRecipientPHIDs
=
$phids
;
return
$this
;
}
final
protected
function
getExcludeMailRecipientPHIDs
()
{
return
$this
->
excludeMailRecipientPHIDs
;
}
}
Event Timeline
Log In to Comment