From 2bc6b97401791ae4ced15b7e8f903efd6e76e09f Mon Sep 17 00:00:00 2001 From: Florian Pritz Date: Tue, 4 Aug 2015 23:19:21 +0200 Subject: Add audio and video players to multipastes Signed-off-by: Florian Pritz --- application/controllers/file.php | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) (limited to 'application/controllers/file.php') diff --git a/application/controllers/file.php b/application/controllers/file.php index 35057f4eb..571a4272f 100644 --- a/application/controllers/file.php +++ b/application/controllers/file.php @@ -203,7 +203,6 @@ class File extends MY_Controller { $mimetype = $filedata["mimetype"]; $base = explode("/", $filedata["mimetype"])[0]; - // TODO: handle video/audio if (\libraries\Image::type_supported($mimetype)) { $filedata["tooltip"] = $this->_tooltip_for_image($filedata); $filedata["orientation"] = libraries\Image::get_exif_orientation($file); @@ -211,6 +210,10 @@ class File extends MY_Controller { array("items" => array($filedata)), 'file/fragments/thumbnail' ); + } else if ($base == "audio") { + $this->output_cache->add(array("filedata" => $filedata), "file/fragments/audio-player"); + } else if ($base == "video") { + $this->output_cache->add(array("filedata" => $filedata), "file/fragments/video-player"); } else { $this->output_cache->add_merge( array("items" => array($filedata)), -- cgit v1.2.3-24-g4f1b