Changeset View
Changeset View
Standalone View
Standalone View
src/applications/almanac/property/AlmanacPropertyInterface.php
| <?php | <?php | ||||
| interface AlmanacPropertyInterface { | interface AlmanacPropertyInterface { | ||||
| public function attachAlmanacProperties(array $properties); | public function attachAlmanacProperties(array $properties); | ||||
| public function getAlmanacProperties(); | public function getAlmanacProperties(); | ||||
| public function hasAlmanacProperty($key); | public function hasAlmanacProperty($key); | ||||
| public function getAlmanacProperty($key); | public function getAlmanacProperty($key); | ||||
| public function getAlmanacPropertyValue($key, $default = null); | public function getAlmanacPropertyValue($key, $default = null); | ||||
| public function getAlmanacPropertyFieldSpecifications(); | public function getAlmanacPropertyFieldSpecifications(); | ||||
| public function newAlmanacPropertyEditEngine(); | public function newAlmanacPropertyEditEngine(); | ||||
| public function getAlmanacPropertySetTransactionType(); | |||||
| public function getAlmanacPropertyDeleteTransactionType(); | |||||
| } | } | ||||