Changeset View
Changeset View
Standalone View
Standalone View
src/applications/almanac/storage/AlmanacService.php
| Show First 20 Lines • Show All 150 Lines • ▼ Show 20 Lines | if ($this->hasAlmanacProperty($key)) { | ||||
| return $default; | return $default; | ||||
| } | } | ||||
| } | } | ||||
| public function getAlmanacPropertyFieldSpecifications() { | public function getAlmanacPropertyFieldSpecifications() { | ||||
| return $this->getServiceImplementation()->getFieldSpecifications(); | return $this->getServiceImplementation()->getFieldSpecifications(); | ||||
| } | } | ||||
| public function getBindingFieldSpecifications(AlmanacBinding $binding) { | |||||
| $impl = $this->getServiceImplementation(); | |||||
| return $impl->getBindingFieldSpecifications($binding); | |||||
| } | |||||
| public function newAlmanacPropertyEditEngine() { | public function newAlmanacPropertyEditEngine() { | ||||
| return new AlmanacServicePropertyEditEngine(); | return new AlmanacServicePropertyEditEngine(); | ||||
| } | } | ||||
| public function getAlmanacPropertySetTransactionType() { | public function getAlmanacPropertySetTransactionType() { | ||||
| return AlmanacServiceSetPropertyTransaction::TRANSACTIONTYPE; | return AlmanacServiceSetPropertyTransaction::TRANSACTIONTYPE; | ||||
| } | } | ||||
| ▲ Show 20 Lines • Show All 135 Lines • Show Last 20 Lines | |||||