From: Bart Visscher Date: Fri, 19 Jul 2013 09:23:47 +0000 (+0200) Subject: Add OC_Image to public api X-Git-Tag: v6.0.0alpha2~431^2~2 X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=9379cbf602362443f1084303c50234470acd15b7;p=nextcloud-server.git Add OC_Image to public api --- diff --git a/lib/installer.php b/lib/installer.php index 2229559208a..97f4e2b5fb8 100644 --- a/lib/installer.php +++ b/lib/installer.php @@ -449,6 +449,7 @@ class OC_Installer{ 'OC_Files::', 'OC_Helper::', 'OC_Hook::', + 'OC_Image::', 'OC_JSON::', 'OC_Log::', 'OC_Mail::', diff --git a/lib/public/image.php b/lib/public/image.php new file mode 100644 index 00000000000..dcecc077e2f --- /dev/null +++ b/lib/public/image.php @@ -0,0 +1,29 @@ + +* +* This library is free software; you can redistribute it and/or +* modify it under the terms of the GNU AFFERO GENERAL PUBLIC LICENSE +* License as published by the Free Software Foundation; either +* version 3 of the License, or any later version. +* +* This library is distributed in the hope that it will be useful, +* but WITHOUT ANY WARRANTY; without even the implied warranty of +* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +* GNU AFFERO GENERAL PUBLIC LICENSE for more details. +* +* You should have received a copy of the GNU Affero General Public +* License along with this library. If not, see . +* +*/ + +namespace OCP; + +/** + * This class provides functions to handle images + */ +class Image extends OC_Image { +}