Download the PHP package kl83/yii2-file-storage without Composer

On this page you can find all versions of the php package kl83/yii2-file-storage. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.

FAQ

After the download, you have to make one include require_once('vendor/autoload.php');. After that you have to import the classes with use statements.

Example:
If you use only one package a project is not needed. But if you use more then one package, without a project it is not possible to import the classes with use statements.

In general, it is recommended to use always a project to download your libraries. In an application normally there is more than one library needed.
Some PHP packages are not free to download and because of that hosted in private repositories. In this case some credentials are needed to access such packages. Please use the auth.json textarea to insert credentials, if a package is coming from a private repository. You can look here for more information.

  • Some hosting areas are not accessible by a terminal or SSH. Then it is not possible to use Composer.
  • To use Composer is sometimes complicated. Especially for beginners.
  • Composer needs much resources. Sometimes they are not available on a simple webspace.
  • If you are using private repositories you don't need to share your credentials. You can set up everything on our site and then you provide a simple download link to your team member.
  • Simplify your Composer build process. Use our own command line tool to download the vendor folder as binary. This makes your build process faster and you don't need to expose your credentials for private repositories.
Please rate this library. Is it a good library?

Informations about the package yii2-file-storage

Yii2 file storage kit

Latest Stable Version Total Downloads License

Module and widgets to upload files. The module uploads files to a random directory, saving their names. Urls, owners, uploading date and unique ID of files are stored in database. Also, several files may be concatenate at fileset which has own ID, owner and creation date. Files uploaded by authenticated users are stored in separate directories. Module has permissions check to manage files.

Installation

The preferred way to install this extension is through composer.

Either run

php composer.phar require kl83/yii2-file-storage ~1.2.0

or add

"kl83/yii2-file-storage": "~1.2.0"

to the require section of your composer.json file.

And apply migrations.

./yii migrate --migrationPath=@vendor/kl83/yii2-file-storage/migrations

Module configuration

config/web.php

...
"modules" => [
    ...
    "filestorage" => "kl83\filestorage\Module",
    ...
]
...
Option Default Description
(string) uploadDir @webroot/uploads Directory to save files.
(string) uploadDirUrl @web/uploads Base url to access uploaded files.
(integer) maxImageWidth 1920 If uploaded file is image and his width more then specified value, then image will be decresed.
(integer) maxImageHeight 1080 If uploaded file is image and his height more then specified value, then image will be decresed.
(array) managerRoles [ 'admin', 'administrator' ] Names of roles or permissions to manage files.

Module actions

Delete file.


Move file to some position inside fileset.


Uploads files.


PicWidget usage

Widget to select and upload some one image.

$form->field($model, 'picId')->widget('kl83\filestorage\widgets\PicWidget');

picId must be integer or null

Example model methods to get uploaded file

public function getPic()
{
    return $this->hasOne('kl83\filestorage\models\File', [ 'id' => 'picId' ]);
}
public function getPicUrl()
{
    return $this->getPic()->url;
}

PicSetWidget usage

Widget to select and upload some images.

$form->field($model, 'picSetId')->widget('kl83\filestorage\widgets\PicSetWidget', [
    'maxImages' => 3, // default is unlimited
]);

picSetId must be integer attribute

Example model methods to get uploaded files

public function getPicSet()
{
    return $this->hasOne('kl83\filestorage\models\FileSet', [ 'id' => 'picSetId' ]);
}
public function getPics()
{
    // returns array of kl83\filestorage\models\File
    return $this->getPicSet()->getFiles();
}
public function getCover()
{
    $pics = $this->getPics();
    if ( is_array($pics) ) {
        return current($pics);
    }
}
public fucntion getCoverUrl()
{
    return $this->getCover()->url;
}

License

MIT License


All versions of yii2-file-storage with dependencies

PHP Build Version
Package Version
Requires php Version >=5.4.0
bower-asset/jquery-form Version ^4.0.0
bower-asset/mustache Version ^3.0.0
yiisoft/yii2 Version ^2.0.0
yiisoft/yii2-bootstrap Version ~2.0.0
yiisoft/yii2-imagine Version ~2.1.0
yiisoft/yii2-jui Version ~2.0.0
mustache/mustache Version ~2.5
kl83/yii2-sortable-behaviour Version ~1.1.0
Composer command for our command line client (download client) This client runs in each environment. You don't need a specific PHP version etc. The first 20 API calls are free. Standard composer command

The package kl83/yii2-file-storage contains the following files

Loading the files please wait ....