Yii2 PDFJS

Yii2 PDFJS

Latest Stable Version Total Downloads Latest Unstable Version License composer.lock

Yii2 PDFJS bundle of PDF.js plugin. PDF.js Portable Document Format (PDF) viewer

Installation

The preferred way to install this extension is through composer.

Either run

php composer.phar require --prefer-dist yii2assets/yii2-pdfjs ">=1.0"

or add

"yii2assets/yii2-pdfjs": ">=1.0"

to the require section of your composer.json file.

Config

'modules'=>[
  'pdfjs' => [
       'class' => '\yii2assets\pdfjs\Module',
   ],
],

Usage

Once the extension is installed, simply use it in your code by :

use yii\helpers\Url;
<?= \yii2assets\pdfjs\PdfJs::widget([
  'url'=> Url::base().'/downloads/pdfjs.pdf'
]); ?>

use in modal

use yii\bootstrap\Modal;
use yii\helpers\Url;

Modal::begin([
    'header' => '<h2>Hello world</h2>',
    'toggleButton' => ['label' => 'click me'],
]);

echo \yii2assets\pdfjs\PdfJs::widget([
  'url' => Url::base().'/downloads/manualStart_up.pdf'
]);

Modal::end();

use in fullscreen

http://app-url/index.php?r=pdfjs&file=download/pdfjs.pdf

Config width & height

use yii\helpers\Url;
<?= \yii2assets\pdfjs\PdfJs::widget([
  'width'=>'100%',
  'heith'=> '500px',
  'url'=> Url::base().'/downloads/pdfjs.pdf'
]); ?>