af036678
Yarik
Image behaviors
|
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
|
<?php
namespace common\behaviors;
use common\components\artboximage\ArtboxImageHelper;
use yii\base\Behavior;
use yii\db\ActiveRecord;
use yii\helpers\Url;
/**
* Class MultipleImgBehavior
* @todo Write validation
* @property ActiveRecord $owner
* @property ActiveRecord $image
* @property ActiveRecord[] $images
* @package common\behaviors
*/
class MultipleImgBehavior extends Behavior
{
/**
* key - $model foreign key, value - $owner link key (usual ID)
* @var array
*/
public $links = [];
|
740819d4
Yarik
Images fix
|
26
27
28
29
30
31
32
|
/**
* Will be passed to get image and get images queries
*
* @var array
*/
public $conditions = [];
|
af036678
Yarik
Image behaviors
|
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
|
/**
* Full namespaced image model
* @var string
*/
public $model;
/**
* Image config array:
* 'caption' - $model caption attribute
* 'delete_action' - url to image delete action, will be passed as first argument to
* Url::to();
* 'id' - $model primary key
* @var array
*/
public $config = [];
/**
* One image query
*
* @return \yii\db\ActiveQuery
*/
public function getImage()
{
/**
* @var ActiveRecord $owner
*/
$owner = $this->owner;
|
740819d4
Yarik
Images fix
|
61
62
63
64
65
66
|
$query = $owner->hasOne($this->model, $this->links);
$conditions = $this->conditions;
foreach($conditions as $condition) {
$query->andWhere($condition);
}
return $query;
|
af036678
Yarik
Image behaviors
|
67
68
69
70
71
72
73
74
75
76
77
78
79
|
}
/**
* All images query
*
* @return \yii\db\ActiveQuery
*/
public function getImages()
{
/**
* @var ActiveRecord $owner
*/
$owner = $this->owner;
|
740819d4
Yarik
Images fix
|
80
81
82
83
84
85
|
$query = $owner->hasMany($this->model, $this->links);
$conditions = $this->conditions;
foreach($conditions as $left => $right) {
$query->andWhere([$left => $right]);
}
return $query;
|
af036678
Yarik
Image behaviors
|
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
|
}
/**
* Get images config array for FileInput
*
* @return array
*/
public function getImagesConfig()
{
$op = [];
$images = $this->getImages()->all();
$config = $this->config;
if(!isset( $config[ 'id' ] )) {
return $op;
}
foreach($images as $image) {
$op[] = [
'caption' => ( isset( $config[ 'caption' ] ) ) ? $image->{$config[ 'caption' ]} : '',
'url' => ( isset( $config[ 'delete_action' ] ) ) ? Url::to([
$config[ 'delete_action' ],
'id' => $image->{$config[ 'id' ]},
]) : '',
'key' => $image->{$config[ 'id' ]},
'extra' => [
'id' => $image->{$config[ 'id' ]},
],
];
}
return $op;
}
/**
* Get images HTML
*
* @param string $preset
*
* @return array
*/
public function getImagesHTML($preset = 'admin_thumb')
{
$op = [];
$images = $this->getImages()->all();
foreach($images as $image) {
$op[] = ArtboxImageHelper::getImage($image->imageUrl, $preset);
}
return $op;
}
|
89fac7e6
Yarik
Another one admin...
|
133
|
|
12a1e136
Yarik
Dummy image
|
134
|
public function getImageUrl($dummy = true)
|
89fac7e6
Yarik
Another one admin...
|
135
136
137
138
|
{
$image = $this->getImage()->one();
if(!empty($image)) {
return $image->getImageUrl();
|
12a1e136
Yarik
Dummy image
|
139
140
|
} elseif($dummy) {
return '/storage/no-image.png';
|
89fac7e6
Yarik
Another one admin...
|
141
142
143
144
|
} else {
return NULL;
}
}
|
af036678
Yarik
Image behaviors
|
145
|
}
|