This widget is a Yii 2 wrapper of FileAPI plugin.
The preferred way to install this extension is through composer.
Either run
php composer.phar require --prefer-dist vova07/yii2-fileapi-widget "*"
or add
"vova07/yii2-fileapi-widget": "*"
to the require section of your composer.json
file.
// MyController.php
use vova07\fileapi\actions\UploadAction as FileAPIUpload;
...
public function actions()
{
return [
'fileapi-upload' => [
'class' => FileAPIUpload::className(),
'path' => '/path/to/temp/files'
]
];
}
// MyModel.php
use vova07\fileapi\behaviors\UploadBehavior;
...
public function behaviors()
{
return [
'uploadBehavior' => [
'class' => UploadBehavior::className(),
'attributes' => [
'preview_url' => [
'path' => '/path/to/previews',
'tempPath' => '/path/to/temp/files/previews',
'url' => '/url/to/previews'
],
'image_url' => [
'path' => '/path/to/images',
'tempPath' => '/path/to/temp/files/images',
'url' => '/url/to/images'
]
]
]
];
}
// _form.php
use vova07\fileapi\Widget as FileAPI;
...
echo $form->field($model, 'preview_url')->widget(
FileAPI::className(),
[
'settings' => [
'url' => ['/controller/fileapi-upload']
]
]
);