Page Menu
Home
Phorge
Search
Configure Global Search
Log In
Files
F466866
PhabricatorPasteEditEngine.php
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Flag For Later
Award Token
Size
3 KB
Referenced Files
None
Subscribers
None
PhabricatorPasteEditEngine.php
View Options
<?php
final
class
PhabricatorPasteEditEngine
extends
PhabricatorEditEngine
{
const
ENGINECONST
=
'paste.paste'
;
public
function
getEngineName
()
{
return
pht
(
'Pastes'
);
}
public
function
getSummaryHeader
()
{
return
pht
(
'Configure Paste Forms'
);
}
public
function
getSummaryText
()
{
return
pht
(
'Configure creation and editing forms in Paste.'
);
}
public
function
getEngineApplicationClass
()
{
return
PhabricatorPasteApplication
::
class
;
}
protected
function
newEditableObject
()
{
return
PhabricatorPaste
::
initializeNewPaste
(
$this
->
getViewer
());
}
protected
function
newObjectQuery
()
{
return
id
(
new
PhabricatorPasteQuery
())
->
needRawContent
(
true
);
}
protected
function
getObjectCreateTitleText
(
$object
)
{
return
pht
(
'Create New Paste'
);
}
protected
function
getObjectEditTitleText
(
$object
)
{
return
pht
(
'Edit Paste: %s'
,
$object
->
getTitle
());
}
protected
function
getObjectEditShortText
(
$object
)
{
return
$object
->
getMonogram
();
}
protected
function
getObjectCreateShortText
()
{
return
pht
(
'Create Paste'
);
}
protected
function
getObjectName
()
{
return
pht
(
'Paste'
);
}
protected
function
getCommentViewHeaderText
(
$object
)
{
return
pht
(
'Eat Paste'
);
}
protected
function
getCommentViewButtonText
(
$object
)
{
return
pht
(
'Nom Nom Nom Nom Nom'
);
}
protected
function
getObjectViewURI
(
$object
)
{
return
'/P'
.
$object
->
getID
();
}
protected
function
buildCustomEditFields
(
$object
)
{
return
array
(
id
(
new
PhabricatorTextEditField
())
->
setKey
(
'title'
)
->
setLabel
(
pht
(
'Title'
))
->
setTransactionType
(
PhabricatorPasteTitleTransaction
::
TRANSACTIONTYPE
)
->
setDescription
(
pht
(
'The title of the paste.'
))
->
setConduitDescription
(
pht
(
'Retitle the paste.'
))
->
setConduitTypeDescription
(
pht
(
'New paste title.'
))
->
setValue
(
$object
->
getTitle
()),
id
(
new
PhabricatorDatasourceEditField
())
->
setKey
(
'language'
)
->
setLabel
(
pht
(
'Language'
))
->
setTransactionType
(
PhabricatorPasteLanguageTransaction
::
TRANSACTIONTYPE
)
->
setAliases
(
array
(
'lang'
))
->
setIsCopyable
(
true
)
->
setDatasource
(
new
PasteLanguageSelectDatasource
())
->
setDescription
(
pht
(
'Language used for syntax highlighting. By default, inferred '
.
'from the title.'
))
->
setConduitDescription
(
pht
(
'Change language used for syntax highlighting.'
))
->
setConduitTypeDescription
(
pht
(
'New highlighting language.'
))
->
setSingleValue
(
$object
->
getLanguage
()),
id
(
new
PhabricatorTextAreaEditField
())
->
setKey
(
'text'
)
->
setLabel
(
pht
(
'Text'
))
->
setTransactionType
(
PhabricatorPasteContentTransaction
::
TRANSACTIONTYPE
)
->
setMonospaced
(
true
)
->
setHeight
(
AphrontFormTextAreaControl
::
HEIGHT_VERY_TALL
)
->
setDescription
(
pht
(
'The main body text of the paste.'
))
->
setConduitDescription
(
pht
(
'Change the paste content.'
))
->
setConduitTypeDescription
(
pht
(
'New body content.'
))
->
setValue
(
$object
->
getRawContent
()),
id
(
new
PhabricatorSelectEditField
())
->
setKey
(
'status'
)
->
setLabel
(
pht
(
'Status'
))
->
setTransactionType
(
PhabricatorPasteStatusTransaction
::
TRANSACTIONTYPE
)
->
setIsFormField
(
false
)
->
setOptions
(
PhabricatorPaste
::
getStatusNameMap
())
->
setDescription
(
pht
(
'Active or archived status.'
))
->
setConduitDescription
(
pht
(
'Active or archive the paste.'
))
->
setConduitTypeDescription
(
pht
(
'New paste status constant.'
))
->
setValue
(
$object
->
getStatus
()),
);
}
}
File Metadata
Details
Attached
Mime Type
text/x-php
Expires
Tue, May 6, 1:40 AM (2 d)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
79208
Default Alt Text
PhabricatorPasteEditEngine.php (3 KB)
Attached To
Mode
rP Phorge
Attached
Detach File
Event Timeline
Log In to Comment