Blame view

artweb/artbox-core/behaviors/GalleryBehavior.php 1.59 KB
326af919   mzavalniuk   add artbox-core t...
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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
  <?php
      
      namespace artbox\core\behaviors;
      
      use artbox\core\models\Image;
      use yii\base\Behavior;
      use yii\db\ActiveRecord;
      use yii\helpers\Json;
      
      /**
       * Class GalleryBehavior
       *
       * @package artbox\core\behaviors\
       * @property ActiveRecord $owner
       */
      class GalleryBehavior extends Behavior
      {
          /**
           * @var string Name of the field in owner's table where gallery will be saved
           */
          public $gallery_field = 'gallery';
          
          /**
           * @return array
           */
          public function getImages(): array
          {
              $gallery_field = $this->gallery_field;
              
              if (empty(Json::decode($this->owner->$gallery_field))) {
                  return [];
              }
              
              return Image::find()
                          ->filterWhere([ 'id' => Json::decode($this->owner->$gallery_field)])
                          ->all();
          }
          
          /**
           * @param array $post
           *
           * @return bool
           */
          public function saveImages(array $post): bool
          {
              $gallery_field = $this->gallery_field;
              
              $to_save = [];
              foreach ($post[ 'images' ] as $image) {
                  /**
                   * Can make additional validation here
                   */
                  if (!empty($image)) {
                      $to_save[] = $image;
                  }
              }
              
              $this->owner->$gallery_field = Json::encode($to_save);
              
              return $this->owner->save();
          }
      }