1. Go to this page and download the library: Download tpmanc/yii2-file-behavior library. Choose the download type require.
2. Extract the ZIP file and open the index.php.
3. Add this code to the index.php.
<?php
require_once('vendor/autoload.php');
/* Start to develop here. Best regards https://php-download.com/ */
tpmanc / yii2-file-behavior example snippets
$this->createTable('image', [
'id' => Schema::TYPE_PK,
'itemId' => Schema::TYPE_INTEGER . ' NOT NULL',
'order' => Schema::TYPE_INTEGER . ' NOT NULL',
'extension' => Schema::TYPE_STRING . '(10) NOT NULL',
'hash' => Schema::TYPE_STRING . '(32) NOT NULL',
]);
$this->createTable('imageSize', [
'id' => Schema::TYPE_PK,
'imageId' => Schema::TYPE_INTEGER . ' NOT NULL',
'path' => Schema::TYPE_STRING . '(255) NOT NULL',
'size' => Schema::TYPE_STRING . '(255) NOT NULL',
]);
use tpmanc\filebehavior\ImageBehavior;
\\ ...
public $file;
public function behaviors()
{
return [
'ImageBehavior' => [
'class' => ImageBehavior::className(),
'imageModel' => 'models\Image',
'imageSizeModel' => 'models\ImageSize',
'imageVariable' => 'file',
'imageFolder' => '@upload',
'webImageFolder' => '@webupload',
'noImagePath' => '@webupload/no-image.png',
],
];
}
public function rules()
{
['file', 'file', 'extensions' => ['png', 'jpg'], 'maxSize' => 1024*1024*1024, 'maxFiles' => 4],
}