Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
freebsd
GitHub Repository: freebsd/phabricator
Path: blob/master/src/applications/almanac/property/AlmanacPropertyInterface.php
12256 views
1
<?php
2
3
interface AlmanacPropertyInterface {
4
5
public function attachAlmanacProperties(array $properties);
6
public function getAlmanacProperties();
7
public function hasAlmanacProperty($key);
8
public function getAlmanacProperty($key);
9
public function getAlmanacPropertyValue($key, $default = null);
10
public function getAlmanacPropertyFieldSpecifications();
11
public function newAlmanacPropertyEditEngine();
12
public function getAlmanacPropertySetTransactionType();
13
public function getAlmanacPropertyDeleteTransactionType();
14
15
}
16
17