mirror of
https://we.phorge.it/source/phorge.git
synced 2024-11-15 11:22:40 +01:00
a939bbc4fa
Summary: Cleans up EditEngine, adds new layout to EditEngine and descendents Test Plan: Test creating a new form, reordering, marking and unmarking defaults. View new forms. Reviewers: epriestley Reviewed By: epriestley Subscribers: Korvin Differential Revision: https://secure.phabricator.com/D15531
89 lines
2 KiB
PHP
89 lines
2 KiB
PHP
<?php
|
|
|
|
final class AlmanacDeviceEditEngine
|
|
extends PhabricatorEditEngine {
|
|
|
|
const ENGINECONST = 'almanac.device';
|
|
|
|
public function isEngineConfigurable() {
|
|
return false;
|
|
}
|
|
|
|
public function getEngineName() {
|
|
return pht('Almanac Devices');
|
|
}
|
|
|
|
public function getSummaryHeader() {
|
|
return pht('Edit Almanac Device Configurations');
|
|
}
|
|
|
|
public function getSummaryText() {
|
|
return pht('This engine is used to edit Almanac devices.');
|
|
}
|
|
|
|
public function getEngineApplicationClass() {
|
|
return 'PhabricatorAlmanacApplication';
|
|
}
|
|
|
|
protected function newEditableObject() {
|
|
return AlmanacDevice::initializeNewDevice();
|
|
}
|
|
|
|
protected function newObjectQuery() {
|
|
return new AlmanacDeviceQuery();
|
|
}
|
|
|
|
protected function getObjectCreateTitleText($object) {
|
|
return pht('Create Device');
|
|
}
|
|
|
|
protected function getObjectCreateButtonText($object) {
|
|
return pht('Create Device');
|
|
}
|
|
|
|
protected function getObjectEditTitleText($object) {
|
|
return pht('Edit Device: %s', $object->getName());
|
|
}
|
|
|
|
protected function getObjectEditShortText($object) {
|
|
return pht('Edit Device');
|
|
}
|
|
|
|
protected function getObjectCreateShortText() {
|
|
return pht('Create Device');
|
|
}
|
|
|
|
protected function getObjectName() {
|
|
return pht('Device');
|
|
}
|
|
|
|
protected function getEditorURI() {
|
|
return '/almanac/device/edit/';
|
|
}
|
|
|
|
protected function getObjectCreateCancelURI($object) {
|
|
return '/almanac/device/';
|
|
}
|
|
|
|
protected function getObjectViewURI($object) {
|
|
return $object->getURI();
|
|
}
|
|
|
|
protected function getCreateNewObjectPolicy() {
|
|
return $this->getApplication()->getPolicy(
|
|
AlmanacCreateDevicesCapability::CAPABILITY);
|
|
}
|
|
|
|
protected function buildCustomEditFields($object) {
|
|
return array(
|
|
id(new PhabricatorTextEditField())
|
|
->setKey('name')
|
|
->setLabel(pht('Name'))
|
|
->setDescription(pht('Name of the device.'))
|
|
->setTransactionType(AlmanacDeviceTransaction::TYPE_NAME)
|
|
->setIsRequired(true)
|
|
->setValue($object->getName()),
|
|
);
|
|
}
|
|
|
|
}
|