|
123456789101112131415161718192021222324252627282930313233343536 |
- <?php
-
- namespace backend\forms;
-
- use yii\base\Model;
- use yii\web\UploadedFile;
-
- /**
- * UploadForm is the model behind the upload form.
- */
- class ProductPriceUploadForm extends Model
- {
- /**
- * @var UploadedFile file attribute
- */
- public $file;
-
- /**
- * @return array the validation rules.
- */
- public function rules()
- {
- return [
- [['file'], 'file', 'skipOnEmpty' => false, 'mimeTypes' => 'text/csv, text/plain'],
- ];
- }
-
- public function attributeLabels()
- {
- return [
- 'file' => "Fichier d'import (CSV)"
- ];
- }
- }
-
- ?>
|