@@ -75,7 +75,7 @@ class UploadBehavior extends Behavior
75
75
/**
76
76
* @var UploadedFile the uploaded file instance.
77
77
*/
78
- protected $ file ;
78
+ private $ _file ;
79
79
80
80
81
81
/**
@@ -119,10 +119,10 @@ public function beforeValidate()
119
119
/** @var BaseActiveRecord $model */
120
120
$ model = $ this ->owner ;
121
121
if (in_array ($ model ->scenario , $ this ->scenarios )) {
122
- $ this ->file = UploadedFile::getInstance ($ model , $ this ->attribute );
123
- if ($ this ->file instanceof UploadedFile) {
124
- $ this ->file ->name = $ this ->getFileName ($ this ->file );
125
- $ model ->setAttribute ($ this ->attribute , $ this ->file );
122
+ $ this ->_file = UploadedFile::getInstance ($ model , $ this ->attribute );
123
+ if ($ this ->_file instanceof UploadedFile) {
124
+ $ this ->_file ->name = $ this ->getFileName ($ this ->_file );
125
+ $ model ->setAttribute ($ this ->attribute , $ this ->_file );
126
126
}
127
127
}
128
128
}
@@ -135,13 +135,13 @@ public function beforeSave()
135
135
/** @var BaseActiveRecord $model */
136
136
$ model = $ this ->owner ;
137
137
if (in_array ($ model ->scenario , $ this ->scenarios )) {
138
- if ($ this ->file instanceof UploadedFile) {
138
+ if ($ this ->_file instanceof UploadedFile) {
139
139
if (!$ model ->getIsNewRecord () && $ model ->isAttributeChanged ($ this ->attribute )) {
140
140
if ($ this ->unlinkOnSave === true ) {
141
141
$ this ->delete ($ this ->attribute , true );
142
142
}
143
143
}
144
- $ model ->setAttribute ($ this ->attribute , $ this ->file ->name );
144
+ $ model ->setAttribute ($ this ->attribute , $ this ->_file ->name );
145
145
} else {
146
146
// Protect attribute
147
147
unset($ model ->{$ this ->attribute });
@@ -162,12 +162,12 @@ public function beforeSave()
162
162
*/
163
163
public function afterSave ()
164
164
{
165
- if ($ this ->file instanceof UploadedFile) {
165
+ if ($ this ->_file instanceof UploadedFile) {
166
166
$ path = $ this ->getUploadPath ($ this ->attribute );
167
167
if (!FileHelper::createDirectory (dirname ($ path ))) {
168
168
throw new InvalidParamException ("Directory specified in 'path' attribute doesn't exist or cannot be created. " );
169
169
}
170
- $ this ->file ->saveAs ($ path );
170
+ $ this ->_file ->saveAs ($ path );
171
171
$ this ->afterUpload ();
172
172
}
173
173
}
0 commit comments