Page Menu
Home
Phorge
Search
Configure Global Search
Log In
Files
F2891658
PhabricatorEditEngineExtension.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
1 KB
Referenced Files
None
Subscribers
None
PhabricatorEditEngineExtension.php
View Options
<?php
abstract
class
PhabricatorEditEngineExtension
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
;
}
public
function
getExtensionPriority
(
)
{
return
1000
;
}
abstract
public
function
isExtensionEnabled
(
)
;
abstract
public
function
getExtensionName
(
)
;
abstract
public
function
supportsObject
(
PhabricatorEditEngine
$engine
,
PhabricatorApplicationTransactionInterface
$object
)
;
abstract
public
function
buildCustomEditFields
(
PhabricatorEditEngine
$engine
,
PhabricatorApplicationTransactionInterface
$object
)
;
public
function
newBulkEditGroups
(
PhabricatorEditEngine
$engine
)
{
return
array
(
)
;
}
final
public
static
function
getAllExtensions
(
)
{
return
id
(
new
PhutilClassMapQuery
(
)
)
->
setAncestorClass
(
__CLASS__
)
->
setUniqueMethod
(
'getExtensionKey'
)
->
setSortMethod
(
'getExtensionPriority'
)
->
execute
(
)
;
}
final
public
static
function
getAllEnabledExtensions
(
)
{
$extensions
=
self
::
getAllExtensions
(
)
;
foreach
(
$extensions
as
$key
=>
$extension
)
{
if
(
!
$extension
->
isExtensionEnabled
(
)
)
{
unset
(
$extensions
[
$key
]
)
;
}
}
return
$extensions
;
}
}
File Metadata
Details
Attached
Mime Type
text/x-php
Expires
Sun, Jan 19, 15:32 (3 w, 23 h ago)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
1126033
Default Alt Text
PhabricatorEditEngineExtension.php (1 KB)
Attached To
Mode
rP Phorge
Attached
Detach File
Event Timeline
Log In to Comment