mirror of
https://github.com/nextcloud/server.git
synced 2026-02-03 20:41:22 -05:00
31 lines
566 B
PHP
31 lines
566 B
PHP
<?php
|
|
|
|
namespace OCP\Contacts\ContactsMenu;
|
|
|
|
use OCP\IUser;
|
|
|
|
/**
|
|
* @since 13.0.0
|
|
*/
|
|
interface IContactsStore {
|
|
|
|
|
|
/**
|
|
* @param IUser $user
|
|
* @param $filter
|
|
* @return IEntry[]
|
|
* @since 13.0.0
|
|
*/
|
|
public function getContacts(IUser $user, $filter);
|
|
|
|
/**
|
|
* @brief finds a contact by specifying the property to search on ($shareType) and the value ($shareWith)
|
|
* @param IUser $user
|
|
* @param integer $shareType
|
|
* @param string $shareWith
|
|
* @return IEntry|null
|
|
* @since 13.0.0
|
|
*/
|
|
public function findOne(IUser $user, $shareType, $shareWith);
|
|
|
|
}
|