online document viewer ¶
виджет для отображения online документов с помощью google viewer, microsoft document viewer и viewerJs
Installation ¶
The preferred way to install this extension is through composer.
Either run
php composer.phar require --prefer-dist lesha724/yii2-document-viewer "*"
or add
"lesha724/yii2-document-viewer": "*"
to the require section of your composer.json
file.
Usage ¶
Once the extension is installed, simply use it in your code by :
<?= \lesha724\documentviewer\GoogleDocumentViewer::widget([
'url'=>'http://example.com/test.doc',//url на ваш документ
'width'=>'100%',
'height'=>'100%',
//https://geektimes.ru/post/111647/
'embedded'=>true,
'a'=>\lesha724\documentviewer\GoogleDocumentViewer::A_BI //A_V = 'v', A_GT= 'gt', A_BI = 'bi'
]); ?>
<?= \lesha724\documentviewer\MicrosoftDocumentViewer::widget([
'url'=>'http://example.com/test.doc',//url на ваш документ
'width'=>'100%',
'height'=>'100%'
]); ?>
<?php
echo \lesha724\documentviewer\ViewerJsDocumentViewer::widget([
'url' => '/README-viewer.odt', //url на ваш документ или http://example.com/test.odt
'width'=>'100%',
'height'=>'100%',
]);?>
Links ¶
- https://support.office.com/uk-ua/article/Перегляд-документів-Office-в-Інтернеті-1cc2ea26-0f7b-41f7-8e0e-6461a104544e?ui=uk-UA&rs=uk-UA&ad=UA&fromAR=1
- https://products.office.com/en-us/office-online/view-office-documents-online
- https://support.office.com/uk-ua/article/Підтримка-браузерів-у-веб-програмах-Office-Online-ad1303e0-a318-47aa-b409-d3a5eb44e452?ui=uk-UA&rs=uk-UA&ad=UA
- https://geektimes.ru/post/111647/
- http://viewerjs.org/
- http://viewerjs.org/examples/
- https://github.com/kogmbh/ViewerJS
If you have any questions, please ask in the forum instead.
Signup or Login in order to comment.