Exemplo n.º 1
0
 /**
  * Find which users can access a shared item
  * @param string $path to the file
  * @param string $ownerUser owner of the file
  * @param bool $includeOwner include owner to the list of users with access to the file
  * @param bool $returnUserPaths Return an array with the user => path map
  * @return array
  * @note $path needs to be relative to user data dir, e.g. 'file.txt'
  *       not '/admin/data/file.txt'
  */
 public static function getUsersSharingFile($path, $ownerUser, $includeOwner = false, $returnUserPaths = false)
 {
     return \OC\Share\Share::getUsersSharingFile($path, $ownerUser, $includeOwner, $returnUserPaths);
 }