You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

controller.php 519B

1234567891011121314151617181920212223
  1. <?php
  2. /**
  3. * Copyright (c) 2014 Christopher Schäpers <christopher@schaepers.it>
  4. * This file is licensed under the Affero General Public License version 3 or
  5. * later.
  6. * See the COPYING-README file.
  7. */
  8. namespace OC\Core\Share;
  9. class Controller {
  10. public static function showShare($args) {
  11. \OC_Util::checkAppEnabled('files_sharing');
  12. $token = $args['token'];
  13. \OC_App::loadApp('files_sharing');
  14. \OC_User::setIncognitoMode(true);
  15. require_once \OC_App::getAppPath('files_sharing') .'/public.php';
  16. }
  17. }
  18. ?>