23 lines
600 B
PHP
23 lines
600 B
PHP
<?php
|
|
script('kicanvasviewer', 'kicanvas/kicanvas');
|
|
style('kicanvasviewer', 'viewer');
|
|
|
|
$fileId = $_['fileId'];
|
|
$fileName = $_['fileName'];
|
|
|
|
$src = \OC::$server->getURLGenerator()->linkToRoute(
|
|
'kicanvasviewer.viewer.file',
|
|
[
|
|
'fileId' => $fileId,
|
|
'name' => $fileName,
|
|
]
|
|
);
|
|
?>
|
|
|
|
<div id="kicanvasviewer" style="width:100%; height:calc(100vh - 50px); min-height:800px;">
|
|
<kc-kicanvas-shell
|
|
id="kicanvas"
|
|
style="display:block; width:100%; height:100%; min-height:800px;"
|
|
src="<?= htmlspecialchars($src, ENT_QUOTES) ?>"></kc-kicanvas-shell>
|
|
</div>
|