Blame view

common/modules/file/widgets/ImageUploader.php 1.11 KB
8c448b56   Administrator   add yii jquery
1
  <?php
8c448b56   Administrator   add yii jquery
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
  
  namespace common\modules\file\widgets;
  use yii\base\Widget;
  
  
  class ImageUploader extends Widget
  {
      public $height = 0;
      public $width = 0;
      public $field;
      public $file;
      public $model;
      public $multi = false;
      public $gallery;
      public $size;
      public $name = 'Add file...';
      public $remover = false;
  
      public function init(){
  
          parent::init();
  
      }
  
  
      public function run()
      {
8c448b56   Administrator   add yii jquery
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
          return $this->render('image_sizer',
              [
                  'model'=>$this->model,
                  'size' => $this->size,
                  'field' => $this->field,
                  'height' => $this->height,
                  'width' => $this->width,
                  'multi'  => $this->multi,
                  'name'  => $this->name,
                  'remover' => $this->remover
              ]);
  
      }
  
      public function getGallery(){
          if($this->gallery){
              $array = explode(",", $this->gallery);
              if(count($array) > 1){
                  array_pop($array);
              }
              return $array;
          } else {
              return array();
          }
  
      }
  
  }