Page Menu
Home
Phorge
Search
Configure Global Search
Log In
Files
F2893821
PhabricatorEditor.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
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
Sun, Jan 19, 19:06 (1 d, 11 h)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
1111211
Default Alt Text
PhabricatorEditor.php (721 B)
Attached To
Mode
rP Phorge
Attached
Detach File
Event Timeline
Log In to Comment