Page Menu
Home
Phorge
Search
Configure Global Search
Log In
Files
F442702
PhabricatorFileEditEngine.php
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Flag For Later
Award Token
Size
2 KB
Referenced Files
None
Subscribers
None
PhabricatorFileEditEngine.php
View Options
<?php
final
class
PhabricatorFileEditEngine
extends
PhabricatorEditEngine
{
const
ENGINECONST
=
'files.file'
;
public
function
getEngineName
()
{
return
pht
(
'Files'
);
}
protected
function
supportsEditEngineConfiguration
()
{
return
false
;
}
protected
function
getCreateNewObjectPolicy
()
{
// TODO: For now, this EditEngine can only edit objects, since there is
// a lot of complexity in dealing with file data during file creation.
return
PhabricatorPolicies
::
POLICY_NOONE
;
}
public
function
getSummaryHeader
()
{
return
pht
(
'Configure Files Forms'
);
}
public
function
getSummaryText
()
{
return
pht
(
'Configure creation and editing forms in Files.'
);
}
public
function
getEngineApplicationClass
()
{
return
PhabricatorFilesApplication
::
class
;
}
protected
function
newEditableObject
()
{
return
PhabricatorFile
::
initializeNewFile
();
}
protected
function
newObjectQuery
()
{
$query
=
new
PhabricatorFileQuery
();
$query
->
withIsDeleted
(
false
);
return
$query
;
}
protected
function
getObjectCreateTitleText
(
$object
)
{
return
pht
(
'Create New File'
);
}
protected
function
getObjectEditTitleText
(
$object
)
{
return
pht
(
'Edit File: %s'
,
$object
->
getName
());
}
protected
function
getObjectEditShortText
(
$object
)
{
return
$object
->
getMonogram
();
}
protected
function
getObjectCreateShortText
()
{
return
pht
(
'Create File'
);
}
protected
function
getObjectName
()
{
return
pht
(
'File'
);
}
protected
function
getObjectViewURI
(
$object
)
{
return
$object
->
getURI
();
}
protected
function
buildCustomEditFields
(
$object
)
{
return
array
(
id
(
new
PhabricatorTextEditField
())
->
setKey
(
'name'
)
->
setLabel
(
pht
(
'Name'
))
->
setTransactionType
(
PhabricatorFileNameTransaction
::
TRANSACTIONTYPE
)
->
setDescription
(
pht
(
'The name of the file.'
))
->
setConduitDescription
(
pht
(
'Rename the file.'
))
->
setConduitTypeDescription
(
pht
(
'New file name.'
))
->
setValue
(
$object
->
getName
()),
id
(
new
PhabricatorTextEditField
())
->
setKey
(
'alt'
)
->
setLabel
(
pht
(
'Alt Text'
))
->
setTransactionType
(
PhabricatorFileAltTextTransaction
::
TRANSACTIONTYPE
)
->
setDescription
(
pht
(
'Human-readable file description.'
))
->
setConduitDescription
(
pht
(
'Set the file alt text.'
))
->
setConduitTypeDescription
(
pht
(
'New alt text.'
))
->
setValue
(
$object
->
getCustomAltText
()),
);
}
}
File Metadata
Details
Attached
Mime Type
text/x-php
Expires
Sun, May 4, 9:22 AM (2 d)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
64643
Default Alt Text
PhabricatorFileEditEngine.php (2 KB)
Attached To
Mode
rP Phorge
Attached
Detach File
Event Timeline
Log In to Comment