Page Menu
Home
Phabricator
Search
Configure Global Search
Log In
Files
F17826737
PhabricatorEditor.php
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Award Token
Flag For Later
Size
721 B
Referenced Files
None
Subscribers
None
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
;
}
}
File Metadata
Details
Attached
Mime Type
text/x-php
Expires
Mon, Jul 28, 7:35 AM (1 d, 14 h)
Storage Engine
blob
Storage Format
Encrypted (AES-256-CBC)
Storage Handle
8188633
Default Alt Text
PhabricatorEditor.php (721 B)
Attached To
Mode
rP Phabricator
Attached
Detach File
Event Timeline
Log In to Comment