Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F99059998
PhabricatorExportEngineExtension.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
Sat, Jan 18, 19:32
Size
725 B
Mime Type
text/x-php
Expires
Mon, Jan 20, 19:32 (2 d)
Engine
blob
Format
Raw Data
Handle
23691078
Attached To
rPH Phabricator
PhabricatorExportEngineExtension.php
View Options
<?php
abstract
class
PhabricatorExportEngineExtension
extends
Phobject
{
private
$viewer
;
final
public
function
getExtensionKey
()
{
return
$this
->
getPhobjectClassConstant
(
'EXTENSIONKEY'
);
}
final
public
function
setViewer
(
$viewer
)
{
$this
->
viewer
=
$viewer
;
return
$this
;
}
final
public
function
getViewer
()
{
return
$this
->
viewer
;
}
abstract
public
function
supportsObject
(
$object
);
abstract
public
function
newExportFields
();
abstract
public
function
newExportData
(
array
$objects
);
final
public
static
function
getAllExtensions
()
{
return
id
(
new
PhutilClassMapQuery
())
->
setAncestorClass
(
__CLASS__
)
->
setUniqueMethod
(
'getExtensionKey'
)
->
execute
();
}
}
Event Timeline
Log In to Comment