diff options
Diffstat (limited to 'lib/app.php')
-rw-r--r--[-rwxr-xr-x] | lib/app.php | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/lib/app.php b/lib/app.php index c9329df91d1..3d2ceb1729f 100755..100644 --- a/lib/app.php +++ b/lib/app.php @@ -137,6 +137,20 @@ class OC_App{ OC_Appconfig::setValue($app, 'types', $appTypes); } + + /** + * check if app is shipped + * @param string $appid the id of the app to check + * @return bool + */ + public static function isShipped($appid){ + $info = self::getAppInfo($appid); + if(isset($info['shipped']) && $info['shipped']=='true'){ + return true; + } else { + return false; + } + } /** * get all enabled apps |