Page Menu
Home
Phorge
Search
Configure Global Search
Log In
Files
F555008
PhabricatorApplicationEditEngine.php
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Flag For Later
Award Token
Size
1 KB
Referenced Files
None
Subscribers
None
PhabricatorApplicationEditEngine.php
View Options
<?php
final
class
PhabricatorApplicationEditEngine
extends
PhabricatorEditEngine
{
const
ENGINECONST
=
'application.application'
;
public
function
getEngineApplicationClass
()
{
return
PhabricatorApplicationsApplication
::
class
;
}
public
function
getEngineName
()
{
return
pht
(
'Applications'
);
}
public
function
getSummaryHeader
()
{
return
pht
(
'Configure Application Forms'
);
}
public
function
getSummaryText
()
{
return
pht
(
'Configure creation and editing forms in Applications.'
);
}
public
function
isEngineConfigurable
()
{
return
false
;
}
protected
function
newEditableObject
()
{
throw
new
PhutilMethodNotImplementedException
();
}
protected
function
newObjectQuery
()
{
return
new
PhabricatorApplicationQuery
();
}
protected
function
getObjectCreateTitleText
(
$object
)
{
return
pht
(
'Create New Application'
);
}
protected
function
getObjectEditTitleText
(
$object
)
{
return
pht
(
'Edit Application: %s'
,
$object
->
getName
());
}
protected
function
getObjectEditShortText
(
$object
)
{
return
$object
->
getName
();
}
protected
function
getObjectCreateShortText
()
{
return
pht
(
'Create Application'
);
}
protected
function
getObjectName
()
{
return
pht
(
'Application'
);
}
protected
function
getObjectViewURI
(
$object
)
{
return
$object
->
getViewURI
();
}
protected
function
buildCustomEditFields
(
$object
)
{
return
array
();
}
}
File Metadata
Details
Attached
Mime Type
text/x-php
Expires
Mon, May 12, 6:21 PM (1 d, 23 h)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
102435
Default Alt Text
PhabricatorApplicationEditEngine.php (1 KB)
Attached To
Mode
rP Phorge
Attached
Detach File
Event Timeline
Log In to Comment