diff options
author | Joas Schilling <nickvergessen@gmx.de> | 2014-11-26 11:14:17 +0100 |
---|---|---|
committer | Joas Schilling <nickvergessen@gmx.de> | 2014-11-27 17:47:19 +0100 |
commit | dfde04291eae31765b2cb858e1d1260b60d75329 (patch) | |
tree | 2c5e4d74aa1467a8d3b8c169350a5ce5ff66379d /lib/public/share_backend_file_dependent.php | |
parent | a2457b5fb9f1ef9fda82afc4cf7dc712d14488c9 (diff) | |
download | nextcloud-server-dfde04291eae31765b2cb858e1d1260b60d75329.tar.gz nextcloud-server-dfde04291eae31765b2cb858e1d1260b60d75329.zip |
Move share interfaces to own files so they can be autoloaded
Diffstat (limited to 'lib/public/share_backend_file_dependent.php')
-rw-r--r-- | lib/public/share_backend_file_dependent.php | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/lib/public/share_backend_file_dependent.php b/lib/public/share_backend_file_dependent.php new file mode 100644 index 00000000000..b666e504008 --- /dev/null +++ b/lib/public/share_backend_file_dependent.php @@ -0,0 +1,31 @@ +<?php +/** + * ownCloud + * + * @author Bjoern Schiessle, Michael Gapczynski + * @copyright 2012 Michael Gapczynski <mtgap@owncloud.com> + * 2014 Bjoern Schiessle <schiessle@owncloud.com> + * + * This file is licensed under the Affero General Public License version 3 or + * later. + * See the COPYING-README file. + */ + +// use OCP namespace for all classes that are considered public. +// This means that they should be used by apps instead of the internal ownCloud classes +namespace OCP; + +/** + * Interface for share backends that share content that is dependent on files. + * Extends the Share_Backend interface. + */ +interface Share_Backend_File_Dependent extends Share_Backend { + /** + * Get the file path of the item + * @param string $itemSource + * @param string $uidOwner User that is the owner of shared item + * @return string|false + */ + public function getFilePath($itemSource, $uidOwner); + +} |