Extension for file uploading and attaching to the models
You can see the demo on the krajee website
The preferred way to install this extension is through composer.
Either run
php composer.phar require nemmo/yii2-attachments "~1.0.1"
or add
"nemmo/yii2-attachments": "~1.0.1"
to the require section of your composer.json
file.
Add module to common/config/main.php
'modules' => [
...
'attachments' => [
'class' => nemmo\attachments\Module::className(),
'tempPath' => '@app/uploads/temp',
'storePath' => '@app/uploads/store',
'rules' => [ // Rules according to the FileValidator
'maxFiles' => 10, // Allow to upload maximum 3 files, default to 3
'mimeTypes' => 'image/png', // Only png images
'maxSize' => 1024 * 1024 // 1 MB
],
'tableName' => '{{%attachments}}' // Optional, default to 'attach_file'
]
...
]
Apply migrations
'controllerMap' => [
...
'migrate' => [
'class' => 'yii\console\controllers\MigrateController',
'migrationNamespaces' => [
'nemmo\attachments\migrations',
],
],
...
],
php yii migrate/up
Attach behavior to your model (be sure that your model has "id" property)
public function behaviors()
{
return [
...
'fileBehavior' => [
'class' => \nemmo\attachments\behaviors\FileBehavior::className()
]
...
];
}
Make sure that you have added 'enctype' => 'multipart/form-data'
to the ActiveForm options
Make sure that you specified maxFiles
in module rules and maxFileCount
on AttachmentsInput
to the number that you want
In the form.php
of your model add file input
<?= \nemmo\attachments\components\AttachmentsInput::widget([
'id' => 'file-input', // Optional
'model' => $model,
'options' => [ // Options of the Kartik's FileInput widget
'multiple' => true, // If you want to allow multiple upload, default to false
],
'pluginOptions' => [ // Plugin options of the Kartik's FileInput widget
'maxFileCount' => 10 // Client max files
]
]) ?>
Use widget to show all attachments of the model in the view.php
<?= \nemmo\attachments\components\AttachmentsTable::widget([
'model' => $model,
'showDeleteButton' => false, // Optional. Default value is true
])?>
(Deprecated) Add onclick action to your submit button that uploads all files before submitting form
<?= Html::submitButton($model->isNewRecord ? 'Create' : 'Update', [
'class' => $model->isNewRecord ? 'btn btn-success' : 'btn btn-primary',
'onclick' => "$('#file-input').fileinput('upload');"
]) ?>
You can get all attached files by calling $model->files
, for example:
foreach ($model->files as $file) {
echo $file->path;
}
You may add the following function to your model
public function init(){
$this->on(\nemmo\attachments\behaviors\FileBehavior::EVENT_AFTER_ATTACH_FILES, function ($event) {
/** @var $files \nemmo\attachments\models\File[] */
$files = $event->files;
//your custom code
});
parent::init();
}
Its now possible to add "inline" to the filecontroller request.
This is done using the $file->getUrl(true) function option.
Use this in column actions if you want to directly display the file in the browser instead of download it.
This also helps with preview configs as one no longer has to wrap the getUrl() in an image tag to stop the download of other filetypes.
ex:
foreach ($this->getFiles() as $file) {
$initialPreview[] =$file->getUrl(true);
}
onclick
event on submit button is deprecated$file->path
.AttachmentsInput
widget on the form view instead of FileInput
tableOptions
property for widget
Comments