1<?php 2/** 3 * @license GPL 3 (http://www.gnu.org/licenses/gpl.html) 4 * @author Martin Schulte <lebowski[at]corvus[dot]uberspace[dot]de>, 2013 5 */ 6 7if(!defined('DOKU_INC')) define('DOKU_INC', dirname(__FILE__).'/../../../../'); 8define('DOKU_DISABLE_GZIP_OUTPUT', 1); 9// $conf and classpathes 10require_once(DOKU_INC.'inc/init.php'); 11 12 13$helper = new helper_plugin_owncloud(true); 14if(isset($_POST['fileid']) && !empty($_POST['fileid'])){ 15 echo $helper->fileInfoToString($_POST['fileid'],true); 16} 17else{ 18 echo $helper->getLang('nothingfound'); 19} 20?> 21 22 23 24 25