mirror of
https://we.phorge.it/source/phorge.git
synced 2024-12-03 12:12:43 +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
20 lines
383 B
PHP
20 lines
383 B
PHP
<?php
|
|
|
|
final class AlmanacServicePropertyEditEngine
|
|
extends AlmanacPropertyEditEngine {
|
|
|
|
const ENGINECONST = 'almanac.service.property';
|
|
|
|
protected function newObjectQuery() {
|
|
return new AlmanacServiceQuery();
|
|
}
|
|
|
|
protected function getObjectViewURI($object) {
|
|
return $object->getURI();
|
|
}
|
|
|
|
protected function getObjectName() {
|
|
return pht('Property');
|
|
}
|
|
|
|
}
|