mirror of
https://github.com/nextcloud/server.git
synced 2026-03-01 04:50:40 -05:00
You have to put a presentation file that contains the presentation defined in html into your ownCloud with the file extension .impress Then you can use this app to play it. It also contains a demo presentation that you can use to learn. Help is welcome to improve this app. :-)
118 lines
2.7 KiB
PHP
Executable file
118 lines
2.7 KiB
PHP
Executable file
<?php
|
|
|
|
/**
|
|
* ownCloud - Impress App
|
|
*
|
|
* @author Frank Karlitschek
|
|
* @copyright 2012 Frank Karlitschek frank@owncloud.org
|
|
*
|
|
* This library is free software; you can redistribute it and/or
|
|
* modify it under the terms of the GNU AFFERO GENERAL PUBLIC LICENSE
|
|
* License as published by the Free Software Foundation; either
|
|
* version 3 of the License, or any later version.
|
|
*
|
|
* This library is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
* GNU AFFERO GENERAL PUBLIC LICENSE for more details.
|
|
*
|
|
* You should have received a copy of the GNU Lesser General Public
|
|
* License along with this library. If not, see <http://www.gnu.org/licenses/>.
|
|
*
|
|
*/
|
|
|
|
|
|
|
|
/*
|
|
|
|
Todo:
|
|
enable fullscreen presentation
|
|
|
|
*/
|
|
|
|
namespace OCA_Impress;
|
|
|
|
class Storage {
|
|
|
|
public static function getPresentations() {
|
|
$presentations=array();
|
|
$list=\OC_FileCache::searchByMime('text','impress' );
|
|
foreach($list as $l) {
|
|
$info=pathinfo($l);
|
|
$size=\OC_Filesystem::filesize($l);
|
|
$mtime=\OC_Filesystem::filemtime($l);
|
|
|
|
$entry=array('url'=>$l,'name'=>$info['filename'],'size'=>$size,'mtime'=>$mtime);
|
|
$presentations[]=$entry;
|
|
}
|
|
|
|
|
|
return $presentations;
|
|
}
|
|
|
|
|
|
public static function showHeader($title){
|
|
|
|
echo('
|
|
|
|
<!doctype html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="utf-8" />
|
|
<meta name="viewport" content="width=1024" />
|
|
<title>'.$title.'</title>
|
|
|
|
|
|
<link href="http://fonts.googleapis.com/css?family=Open+Sans:regular,semibold,italic,italicsemibold|PT+Sans:400,700,400italic,700italic|PT+Serif:400,700,400italic,700italic" rel="stylesheet" />
|
|
|
|
<link href="'.\OCP\Util::linkToAbsolute('impress','css/player.css').'" rel="stylesheet" />
|
|
</head>
|
|
|
|
<body class="impress-not-supported">
|
|
|
|
|
|
<div class="fallback-message">
|
|
<p>Your browser <b>does not support the features required</b> by impress.js, so you are presented with a simplified version of this presentation.</p>
|
|
<p>For the best experience please use the latest <b>Chrome</b>, <b>Safari</b> or <b>Firefox</b> browser.</p>
|
|
</div>
|
|
|
|
|
|
<div id="impress">
|
|
|
|
|
|
|
|
');
|
|
|
|
}
|
|
|
|
public static function showFooter(){
|
|
|
|
echo('
|
|
|
|
<div class="hint">
|
|
<p>Make fullscreen and use a spacebar or arrow keys to navigate</p>
|
|
</div>
|
|
<script>
|
|
if ("ontouchstart" in document.documentElement) {
|
|
document.querySelector(".hint").innerHTML = "<p>Tap on the left or right to navigate</p>";
|
|
}
|
|
</script>
|
|
|
|
<script src="'.\OCP\Util::linkToAbsolute('impress','js/impress.js').'"></script>
|
|
<script>impress().init();</script>
|
|
|
|
<script>
|
|
|
|
|
|
|
|
</script>
|
|
|
|
</body></html>
|
|
');
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
?>
|