More imports

Signed-off-by: Joas Schilling <coding@schilljs.com>
This commit is contained in:
Joas Schilling 2020-06-22 11:10:44 +02:00
parent 3997856d76
commit 404080abb4
No known key found for this signature in database
GPG Key ID: 7076EA9751AACDDA
1 changed files with 6 additions and 4 deletions

View File

@ -31,9 +31,11 @@
namespace OC; namespace OC;
use OCP\Constants;
use OCP\Contacts\IManager;
use OCP\IAddressBook; use OCP\IAddressBook;
class ContactsManager implements \OCP\Contacts\IManager { class ContactsManager implements IManager {
/** /**
* This function is used to search and find contacts within the users address books. * This function is used to search and find contacts within the users address books.
@ -76,7 +78,7 @@ class ContactsManager implements \OCP\Contacts\IManager {
return null; return null;
} }
if ($addressBook->getPermissions() & \OCP\Constants::PERMISSION_DELETE) { if ($addressBook->getPermissions() & Constants::PERMISSION_DELETE) {
return $addressBook->delete($id); return $addressBook->delete($id);
} }
@ -97,7 +99,7 @@ class ContactsManager implements \OCP\Contacts\IManager {
return null; return null;
} }
if ($addressBook->getPermissions() & \OCP\Constants::PERMISSION_CREATE) { if ($addressBook->getPermissions() & Constants::PERMISSION_CREATE) {
return $addressBook->createOrUpdate($properties); return $addressBook->createOrUpdate($properties);
} }
@ -131,7 +133,7 @@ class ContactsManager implements \OCP\Contacts\IManager {
* Return a list of the user's addressbooks display names * Return a list of the user's addressbooks display names
* ! The addressBook displayName are not unique, please use getUserAddressBooks * ! The addressBook displayName are not unique, please use getUserAddressBooks
* *
* @return array * @return IAddressBook[]
* @since 6.0.0 * @since 6.0.0
* @deprecated 16.0.0 - Use `$this->getUserAddressBooks()` instead * @deprecated 16.0.0 - Use `$this->getUserAddressBooks()` instead
*/ */