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// db access 14 15$helper = new helper_plugin_owncloud(false); 16if(isset($_POST['file']) && $_POST['file'] != ''){ 17 echo $helper->mediaMetaAsTable($_POST['file'],true); 18} 19else{ 20 echo $helper->getLang('nothingfound'); 21} 22 23 24?> 25 26 27 28 29