0byt3m1n1
Path:
/
data
/
applications
/
aps
/
tikiwiki
/
14.1-0
/
standard
/
htdocs
/
lib
/
jquery_tiki
/
elfinder
/
[
Home
]
File: tikiElFinder.php
<?php // (c) Copyright 2002-2015 by authors of the Tiki Wiki CMS Groupware Project // // All Rights Reserved. See copyright.txt for details and a complete list of authors. // Licensed under the GNU LESSER GENERAL PUBLIC LICENSE. See license.txt for details. // $Id: tikiElFinder.php 53803 2015-02-06 00:42:50Z jyhem $ // initially from https://github.com/Studio-42/elFinder/wiki/Adding-file-description-to-Properties-dialog class tikiElFinder extends elFinder { function __construct($opts) { parent::__construct($opts); /* Adding new command */ $this->commands['info'] = array('target' => true, 'content' => false); } protected function info($args) { $target = $args['target']; $newDesc = $args['content']; $error = array(self::ERROR_UNKNOWN, '#' . $target); if (($volume = $this->volume($target)) == false || ($file = $volume->file($target)) == false) { return array('error' => $this->error($error, self::ERROR_FILE_NOT_FOUND)); } $error[1] = $file['name']; if ($volume->commandDisabled('info')) { return array('error' => $this->error($error, self::ERROR_ACCESS_DENIED)); } if (($info = $volume->info($target, $newDesc)) == -1) { return array('error' => $this->error($error, $volume->error())); } return array('info' => $info); } }