aboutsummaryrefslogtreecommitdiffstats
path: root/lib/private/apphelper.php
diff options
context:
space:
mode:
authorThomas Müller <thomas.mueller@tmit.eu>2013-10-07 00:32:39 +0200
committerThomas Müller <thomas.mueller@tmit.eu>2013-10-07 00:32:39 +0200
commit3829a746a154863dc264bc83aa8bde4970d59949 (patch)
treea9f06384932914e16322155fa7b4d1b6a6358b26 /lib/private/apphelper.php
parentfda37ea09c68bfefe31ee1a6d28d6fc09e38a151 (diff)
downloadnextcloud-server-3829a746a154863dc264bc83aa8bde4970d59949.tar.gz
nextcloud-server-3829a746a154863dc264bc83aa8bde4970d59949.zip
moving file to the right location
Diffstat (limited to 'lib/private/apphelper.php')
-rw-r--r--lib/private/apphelper.php25
1 files changed, 25 insertions, 0 deletions
diff --git a/lib/private/apphelper.php b/lib/private/apphelper.php
new file mode 100644
index 00000000000..bd02f3aabfa
--- /dev/null
+++ b/lib/private/apphelper.php
@@ -0,0 +1,25 @@
+<?php
+/**
+ * Copyright (c) 2013 Bart Visscher <bartv@thisnet.nl>
+ * This file is licensed under the Affero General Public License version 3 or
+ * later.
+ * See the COPYING-README file.
+ *
+ */
+
+namespace OC;
+
+/**
+ * TODO: Description
+ */
+class AppHelper implements \OCP\IHelper {
+ /**
+ * Gets the content of an URL by using CURL or a fallback if it is not
+ * installed
+ * @param string $url the url that should be fetched
+ * @return string the content of the webpage
+ */
+ public function getUrlContent($url) {
+ return \OC_Util::getUrlContent($url);
+ }
+}