-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathPdfJs.php
45 lines (37 loc) · 1.05 KB
/
PdfJs.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
<?php
namespace yii2assets\pdfjs;
use Yii;
use yii\helpers\Html;
use yii\helpers\Url;
use yii\helpers\ArrayHelper;
/**
* PdfJs Widget
* @author Sathit Seethaphon <[email protected]>
*/
class PdfJs extends \yii\base\Widget
{
public $url=null;
public $width = '100%';
public $height = '500px';
public $options = [];
public $buttons = [];
public function init()
{
parent::init();
$buttons = Yii::$app->getModule('pdfjs')->buttons;
$this->buttons = array_merge($buttons,$this->buttons);
//$this->getView()->registerJsFile(Yii::$app->assetManager->getPublishedUrl('@yii2assets/pdfjs/assets').'/yii2-pdfjs.js');
}
public function run()
{
if(!array_key_exists('style',$this->options)){
$this->options['style'] = 'border:solid 2px #404040; width:'.$this->width.'; height:'.$this->height.';';
}
return $this->render('viewer',[
'options' => $this->options,
'url' => $this->url,
'buttons'=>$this->buttons,
'id'=>$this->id
]);
}
}