mirror of
https://we.phorge.it/source/phorge.git
synced 2025-03-02 23:49:19 +01:00
17 lines
311 B
PHP
17 lines
311 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();
|
||
|
}
|
||
|
|
||
|
}
|