summaryrefslogtreecommitdiffstats
path: root/lib/public/constants.php
diff options
context:
space:
mode:
authorJoas Schilling <nickvergessen@gmx.de>2014-11-25 16:27:27 +0100
committerJoas Schilling <nickvergessen@gmx.de>2014-11-25 16:27:27 +0100
commit711912a7b3f48065b220a909e8889aba5a93d105 (patch)
treed8f59a601d7fc87d03cb01ff1a6915aab3e9b19f /lib/public/constants.php
parent553188273c24835b2f8e36e488208f486d674bfc (diff)
downloadnextcloud-server-711912a7b3f48065b220a909e8889aba5a93d105.tar.gz
nextcloud-server-711912a7b3f48065b220a909e8889aba5a93d105.zip
Move namespaced constants to namespaced class
Diffstat (limited to 'lib/public/constants.php')
-rw-r--r--lib/public/constants.php28
1 files changed, 25 insertions, 3 deletions
diff --git a/lib/public/constants.php b/lib/public/constants.php
index 350646a0ac0..78cafd11847 100644
--- a/lib/public/constants.php
+++ b/lib/public/constants.php
@@ -26,15 +26,37 @@
namespace OCP;
-/**
- * CRUDS permissions.
- */
+/** @deprecated Use \OCP\Constants::PERMISSION_CREATE instead */
const PERMISSION_CREATE = 4;
+
+/** @deprecated Use \OCP\Constants::PERMISSION_READ instead */
const PERMISSION_READ = 1;
+
+/** @deprecated Use \OCP\Constants::PERMISSION_UPDATE instead */
const PERMISSION_UPDATE = 2;
+
+/** @deprecated Use \OCP\Constants::PERMISSION_DELETE instead */
const PERMISSION_DELETE = 8;
+
+/** @deprecated Use \OCP\Constants::PERMISSION_SHARE instead */
const PERMISSION_SHARE = 16;
+
+/** @deprecated Use \OCP\Constants::PERMISSION_ALL instead */
const PERMISSION_ALL = 31;
+/** @deprecated Use \OCP\Constants::FILENAME_INVALID_CHARS instead */
const FILENAME_INVALID_CHARS = "\\/<>:\"|?*\n";
+class Constants {
+ /**
+ * CRUDS permissions.
+ */
+ const PERMISSION_CREATE = 4;
+ const PERMISSION_READ = 1;
+ const PERMISSION_UPDATE = 2;
+ const PERMISSION_DELETE = 8;
+ const PERMISSION_SHARE = 16;
+ const PERMISSION_ALL = 31;
+
+ const FILENAME_INVALID_CHARS = "\\/<>:\"|?*\n";
+}