Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F98142444
PhabricatorApplicationEditEngine.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
Fri, Jan 10, 06:07
Size
1 KB
Mime Type
text/x-php
Expires
Sun, Jan 12, 06:07 (2 d)
Engine
blob
Format
Raw Data
Handle
23515727
Attached To
rPH Phabricator
PhabricatorApplicationEditEngine.php
View Options
<?php
final
class
PhabricatorApplicationEditEngine
extends
PhabricatorEditEngine
{
const
ENGINECONST
=
'application.application'
;
public
function
getEngineApplicationClass
()
{
return
'PhabricatorApplicationsApplication'
;
}
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
();
}
}
Event Timeline
Log In to Comment