2017-04-04 08:02:37 -07:00
|
|
|
<?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';
|
|
|
|
}
|
|
|
|
|
|
|
|
protected function newEditableObject() {
|
|
|
|
return PhabricatorFile::initializeNewFile();
|
|
|
|
}
|
|
|
|
|
|
|
|
protected function newObjectQuery() {
|
2017-04-18 11:07:24 -07:00
|
|
|
$query = new PhabricatorFileQuery();
|
|
|
|
$query->withIsDeleted(false);
|
|
|
|
return $query;
|
2017-04-04 08:02:37 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
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()),
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|