Exemplo n.º 1
0
 /**
  * Get the items of item type shared with the current user
  * @param string $itemType
  * @param int $format (optional) Format type must be defined by the backend
  * @param mixed $parameters (optional)
  * @param int $limit Number of items to return (optional) Returns all by default
  * @param bool $includeCollections (optional)
  * @return mixed Return depends on format
  */
 public static function getItemsSharedWith($itemType, $format = self::FORMAT_NONE, $parameters = null, $limit = -1, $includeCollections = false)
 {
     return \OC\Share\Share::getItemsSharedWith($itemType, $format, $parameters, $limit, $includeCollections);
 }