Exemplo n.º 1
0
 /**
  * Get the item of item type shared with a given user by source
  * @param string $itemType
  * @param string $itemSource
  * @param string $user User to whom the item was shared
  * @param string $owner Owner of the share
  * @return array Return list of items with file_target, permissions and expiration
  */
 public static function getItemSharedWithUser($itemType, $itemSource, $user, $owner = null)
 {
     return \OC\Share\Share::getItemSharedWithUser($itemType, $itemSource, $user, $owner);
 }
Exemplo n.º 2
0
 /**
  * @param $itemSource
  * @param $itemType
  * @param IUser $recipient
  * @return array
  */
 protected function getItemSharedWithUser($itemSource, $itemType, $recipient)
 {
     return Share::getItemSharedWithUser($itemType, $itemSource, $recipient->getUID());
 }