Blame view

sources/lib/private/apphelper.php 559 Bytes
31b7f2792   Kload   Upgrade to ownclo...
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
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);
  	}
  }