コード例 #1
0
ファイル: share.php プロジェクト: adolfo2103/hcloudfilem
 /**
  * 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);
 }
コード例 #2
0
ファイル: share.php プロジェクト: WYSAC/oregon-owncloud
 /**
  * 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);
 }