@@ -104,7 +104,7 @@ discard block |
||
| 104 | 104 | /** |
| 105 | 105 | * Return the number of address books for a principal |
| 106 | 106 | * |
| 107 | - * @param $principalUri |
|
| 107 | + * @param string $principalUri |
|
| 108 | 108 | * @return int |
| 109 | 109 | */ |
| 110 | 110 | public function getAddressBooksForUserCount($principalUri) { |
@@ -195,6 +195,9 @@ discard block |
||
| 195 | 195 | return array_values($addressBooks); |
| 196 | 196 | } |
| 197 | 197 | |
| 198 | + /** |
|
| 199 | + * @param string $principalUri |
|
| 200 | + */ |
|
| 198 | 201 | public function getUsersOwnAddressBooks($principalUri) { |
| 199 | 202 | $principalUriOriginal = $principalUri; |
| 200 | 203 | $principalUri = $this->convertPrincipal($principalUri, true); |
@@ -264,7 +267,8 @@ discard block |
||
| 264 | 267 | } |
| 265 | 268 | |
| 266 | 269 | /** |
| 267 | - * @param $addressBookUri |
|
| 270 | + * @param string $addressBookUri |
|
| 271 | + * @param string $principal |
|
| 268 | 272 | * @return array|null |
| 269 | 273 | */ |
| 270 | 274 | public function getAddressBooksByUri($principal, $addressBookUri) { |
@@ -953,6 +957,7 @@ discard block |
||
| 953 | 957 | * * readOnly - boolean |
| 954 | 958 | * * summary - Optional, a description for the share |
| 955 | 959 | * |
| 960 | + * @param integer $addressBookId |
|
| 956 | 961 | * @return array |
| 957 | 962 | */ |
| 958 | 963 | public function getShares($addressBookId) { |
@@ -1052,7 +1057,7 @@ discard block |
||
| 1052 | 1057 | |
| 1053 | 1058 | /** |
| 1054 | 1059 | * For shared address books the sharee is set in the ACL of the address book |
| 1055 | - * @param $addressBookId |
|
| 1060 | + * @param integer $addressBookId |
|
| 1056 | 1061 | * @param $acl |
| 1057 | 1062 | * @return array |
| 1058 | 1063 | */ |
@@ -1060,6 +1065,9 @@ discard block |
||
| 1060 | 1065 | return $this->sharingBackend->applyShareAcl($addressBookId, $acl); |
| 1061 | 1066 | } |
| 1062 | 1067 | |
| 1068 | + /** |
|
| 1069 | + * @param boolean $toV2 |
|
| 1070 | + */ |
|
| 1063 | 1071 | private function convertPrincipal($principalUri, $toV2) { |
| 1064 | 1072 | if ($this->principalBackend->getPrincipalPrefix() === 'principals') { |
| 1065 | 1073 | list(, $name) = URLUtil::splitPath($principalUri); |