Exemplo n.º 1
0
 /**
  * Unshare an item shared with the current user
  * @param string $itemType
  * @param string $itemTarget
  * @return boolean true on success or false on failure
  *
  * Unsharing from self is not allowed for items inside collections
  */
 public static function unshareFromSelf($itemType, $itemOrigin, $originIsSource = false)
 {
     return \OC\Share\Share::unshareFromSelf($itemType, $itemOrigin, $originIsSource);
 }
Exemplo n.º 2
0
 /**
  * Unshare an item shared with the current user
  * @param string $itemType
  * @param string $itemTarget
  * @return boolean true on success or false on failure
  *
  * Unsharing from self is not allowed for items inside collections
  */
 public static function unshareFromSelf($itemType, $itemTarget)
 {
     return \OC\Share\Share::unshareFromSelf($itemType, $itemTarget);
 }