Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F100822082
PhabricatorApplicationEditor.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, Feb 3, 01:28
Size
989 B
Mime Type
text/x-php
Expires
Wed, Feb 5, 01:28 (1 d, 21 h)
Engine
blob
Format
Raw Data
Handle
24039934
Attached To
rPH Phabricator
PhabricatorApplicationEditor.php
View Options
<?php
final
class
PhabricatorApplicationEditor
extends
PhabricatorApplicationTransactionEditor
{
public
function
getEditorApplicationClass
()
{
return
'PhabricatorApplicationsApplication'
;
}
public
function
getEditorObjectsDescription
()
{
return
pht
(
'Application'
);
}
protected
function
supportsSearch
()
{
return
true
;
}
public
function
getTransactionTypes
()
{
$types
=
parent
::
getTransactionTypes
();
$types
[]
=
PhabricatorTransactions
::
TYPE_VIEW_POLICY
;
$types
[]
=
PhabricatorTransactions
::
TYPE_EDIT_POLICY
;
return
$types
;
}
protected
function
shouldSendMail
(
PhabricatorLiskDAO
$object
,
array
$xactions
)
{
return
false
;
}
protected
function
shouldPublishFeedStory
(
PhabricatorLiskDAO
$object
,
array
$xactions
)
{
return
true
;
}
protected
function
getMailTo
(
PhabricatorLiskDAO
$object
)
{
return
array
();
}
protected
function
getMailCC
(
PhabricatorLiskDAO
$object
)
{
return
array
();
}
}
Event Timeline
Log In to Comment