aboutsummaryrefslogtreecommitdiffstats
path: root/lib/private/legacy/OC_JSON.php
diff options
context:
space:
mode:
Diffstat (limited to 'lib/private/legacy/OC_JSON.php')
-rw-r--r--lib/private/legacy/OC_JSON.php21
1 files changed, 11 insertions, 10 deletions
diff --git a/lib/private/legacy/OC_JSON.php b/lib/private/legacy/OC_JSON.php
index a9682e2cce7..6daef18dd61 100644
--- a/lib/private/legacy/OC_JSON.php
+++ b/lib/private/legacy/OC_JSON.php
@@ -12,7 +12,7 @@ class OC_JSON {
/**
* Check if the app is enabled, send json error msg if not
* @param string $app
- * @deprecated Use the AppFramework instead. It will automatically check if the app is enabled.
+ * @deprecated 12.0.0 Use the AppFramework instead. It will automatically check if the app is enabled.
* @suppress PhanDeprecatedFunction
*/
public static function checkAppEnabled($app) {
@@ -25,7 +25,7 @@ class OC_JSON {
/**
* Check if the user is logged in, send json error msg if not
- * @deprecated Use annotation based ACLs from the AppFramework instead
+ * @deprecated 12.0.0 Use annotation based ACLs from the AppFramework instead
* @suppress PhanDeprecatedFunction
*/
public static function checkLoggedIn() {
@@ -41,12 +41,12 @@ class OC_JSON {
/**
* Check an ajax get/post call if the request token is valid, send json error msg if not.
- * @deprecated Use annotation based CSRF checks from the AppFramework instead
+ * @deprecated 12.0.0 Use annotation based CSRF checks from the AppFramework instead
* @suppress PhanDeprecatedFunction
*/
public static function callCheck() {
if (!\OC::$server->getRequest()->passesStrictCookieCheck()) {
- header('Location: '.\OC::$WEBROOT);
+ header('Location: ' . \OC::$WEBROOT);
exit();
}
@@ -59,7 +59,7 @@ class OC_JSON {
/**
* Check if the user is a admin, send json error msg if not.
- * @deprecated Use annotation based ACLs from the AppFramework instead
+ * @deprecated 12.0.0 Use annotation based ACLs from the AppFramework instead
* @suppress PhanDeprecatedFunction
*/
public static function checkAdminUser() {
@@ -72,9 +72,8 @@ class OC_JSON {
/**
* Send json error msg
- * @deprecated Use a AppFramework JSONResponse instead
+ * @deprecated 12.0.0 Use a AppFramework JSONResponse instead
* @suppress PhanDeprecatedFunction
- * @psalm-taint-escape html
*/
public static function error($data = []) {
$data['status'] = 'error';
@@ -84,9 +83,8 @@ class OC_JSON {
/**
* Send json success msg
- * @deprecated Use a AppFramework JSONResponse instead
+ * @deprecated 12.0.0 Use a AppFramework JSONResponse instead
* @suppress PhanDeprecatedFunction
- * @psalm-taint-escape html
*/
public static function success($data = []) {
$data['status'] = 'success';
@@ -96,7 +94,10 @@ class OC_JSON {
/**
* Encode JSON
- * @deprecated Use a AppFramework JSONResponse instead
+ * @deprecated 12.0.0 Use a AppFramework JSONResponse instead
+ *
+ * @psalm-taint-escape has_quotes
+ * @psalm-taint-escape html
*/
private static function encode($data) {
return json_encode($data, JSON_HEX_TAG);