|
1
|
|
|
<?php |
|
2
|
|
|
namespace Itstructure\MFUploader\models\album; |
|
3
|
|
|
|
|
4
|
|
|
use yii\helpers\ArrayHelper; |
|
5
|
|
|
use Itstructure\MFUploader\behaviors\BehaviorMediafile; |
|
6
|
|
|
use Itstructure\MFUploader\interfaces\UploadModelInterface; |
|
7
|
|
|
use Itstructure\MFUploader\models\{ActiveRecord, OwnerMediafile}; |
|
8
|
|
|
|
|
9
|
|
|
/** |
|
10
|
|
|
* This is the model class for video album. |
|
11
|
|
|
* |
|
12
|
|
|
* @property array $video Video field. Corresponds to the file type of video. |
|
13
|
|
|
* In the thml form field should also be called. |
|
14
|
|
|
* Can have the values according with the selected type of: |
|
15
|
|
|
* FileSetter::INSERTED_DATA_ID |
|
16
|
|
|
* FileSetter::INSERTED_DATA_URL |
|
17
|
|
|
* |
|
18
|
|
|
* @package Itstructure\MFUploader\models\album |
|
19
|
|
|
* |
|
20
|
|
|
* @author Andrey Girnik <[email protected]> |
|
21
|
|
|
*/ |
|
22
|
|
|
class VideoAlbum extends Album |
|
23
|
|
|
{ |
|
24
|
|
|
/** |
|
25
|
|
|
* Video field. Corresponds to the file type of video. |
|
26
|
|
|
* In the thml form field should also be called. |
|
27
|
|
|
* Can have the values according with the selected type of: |
|
28
|
|
|
* FileSetter::INSERTED_DATA_ID |
|
29
|
|
|
* FileSetter::INSERTED_DATA_URL |
|
30
|
|
|
* |
|
31
|
|
|
* @var array video(array of 'mediafile id' or 'mediafile url'). |
|
32
|
|
|
*/ |
|
33
|
|
|
public $video; |
|
34
|
|
|
|
|
35
|
|
|
/** |
|
36
|
|
|
* {@inheritdoc} |
|
37
|
|
|
*/ |
|
38
|
|
|
public function rules() |
|
39
|
|
|
{ |
|
40
|
|
|
return ArrayHelper::merge(parent::rules(), [ |
|
41
|
|
|
[ |
|
42
|
|
|
UploadModelInterface::FILE_TYPE_VIDEO, |
|
43
|
|
|
function($attribute) { |
|
44
|
|
|
if (!is_array($this->{$attribute})) { |
|
45
|
|
|
$this->addError($attribute, 'Video field content must be an array.'); |
|
46
|
|
|
} |
|
47
|
|
|
}, |
|
48
|
|
|
'skipOnError' => false, |
|
49
|
|
|
], |
|
50
|
|
|
]); |
|
51
|
|
|
} |
|
52
|
|
|
|
|
53
|
|
|
/** |
|
54
|
|
|
* @inheritdoc |
|
55
|
|
|
*/ |
|
56
|
|
|
public function behaviors() |
|
57
|
|
|
{ |
|
58
|
|
|
return ArrayHelper::merge(parent::behaviors(), [ |
|
59
|
|
|
'mediafile' => [ |
|
60
|
|
|
'class' => BehaviorMediafile::class, |
|
61
|
|
|
'name' => self::ALBUM_TYPE_VIDEO, |
|
62
|
|
|
'attributes' => [ |
|
63
|
|
|
UploadModelInterface::FILE_TYPE_THUMB, |
|
64
|
|
|
UploadModelInterface::FILE_TYPE_VIDEO, |
|
65
|
|
|
], |
|
66
|
|
|
] |
|
67
|
|
|
]); |
|
68
|
|
|
} |
|
69
|
|
|
|
|
70
|
|
|
/** |
|
71
|
|
|
* Get album's video. |
|
72
|
|
|
* |
|
73
|
|
|
* @return ActiveRecord[] |
|
74
|
|
|
*/ |
|
75
|
|
|
public function getVideoFiles() |
|
76
|
|
|
{ |
|
77
|
|
|
return OwnerMediafile::getMediaFiles($this->type, $this->id, static::getFileType(self::ALBUM_TYPE_VIDEO)); |
|
78
|
|
|
} |
|
79
|
|
|
} |
|
80
|
|
|
|