fabiomlferreira/yii2-file-manager
Composer 安装命令:
composer require fabiomlferreira/yii2-file-manager
包简介
File Manager for Yii2
README 文档
README
This module provide interface to collect and access all mediafiles in one place. This module have an option to enable on the fly thumbnail generation.
Features
- Integrated with TinyMCE editor.
- Automatically create actually directory for uploaded files like "2017/03".
- Automatically create thumbs for uploaded images or on the fly
- Unlimited number of sets of miniatures
- All media files are stored in a database that allows you to attach to your object does not link to the image, and the id of the media file. This provides greater flexibility since in the future will be easy to change the size of thumbnails.
- If your change thumbs sizes, your may resize all existing thumbs in settings.
Screenshots
Installation
The preferred way to install this extension is through composer.
Either run
php composer.phar require --prefer-dist fabiomlferreira/yii2-file-manager "*"
or add
"fabiomlferreira/yii2-file-manager": "*"
to the require section of your composer.json file.
Apply migration
yii migrate --migrationPath=vendor/fabiomlferreira/yii2-file-manager/migrations
Configuration:
'modules' => [ 'filemanager' => [ 'class' => 'fabiomlferreira\filemanager\Module', 'rename' => true, //enable upload multiple images with the same name, this will rewrite the images name 'optimizeOriginalImage' => true, //Optimize the original image 'maxSideSize' => 1200, //limit the maximum size for the original image only work if 'optimizeOriginalImage' => true 'originalQuality' => 80, // quality for the original image only work if 'optimizeOriginalImage' => true 'thumbnailOnTheFly' => false, //if is true will generate the thumbnails on the fly, is required that you set the component "thumbnail" // Upload routes 'routes' => [ // Base absolute path to web directory 'baseUrl' => '', // Base web directory url 'basePath' => '@frontend/web', //for yii2 advanced template // Path for uploaded files in web directory 'uploadPath' => 'uploads', ], // Thumbnails info 'thumbs' => [ 'small' => [ 'name' => 'Small', 'size' => [100, 100], ], 'medium' => [ 'name' => 'Regular', 'size' => [300, 200], ], 'large' => [ 'name' => 'Large', 'size' => [500, 400], ], ], // following line will restrict access to admin controller from frontend application 'as frontend' => 'fabiomlferreira\filemanager\filters\FrontendFilter', ], ],
By default, thumbnails are resized in "outbound" or "fill" mode. To switch to "inset" or "fit" mode, use mode parameter and provide. Possible values: outbound (\Imagine\Image\ImageInterface::THUMBNAIL_OUTBOUND) or inset (\Imagine\Image\ImageInterface::THUMBNAIL_INSET):
'thumbs' => [ 'small' => [ 'name' => 'Small', 'size' => [100, 100], ], 'medium' => [ 'name' => 'Regular', 'size' => [300, 200], ], 'large' => [ 'name' => 'Large', 'size' => [500, 400], 'mode' => \Imagine\Image\ImageInterface::THUMBNAIL_INSET ], ],
If you need to keep the aspect ratio without white margins you can put the mode to INSET and also set to true the keepAspectRatio property. This will use the Box method to fix the highest side and reside the other side proportionally:
'thumbs' => [ 'small' => [ 'name' => 'Small', 'size' => [100, 100], ], 'medium' => [ 'name' => 'Regular', 'size' => [300, 200], ], 'large' => [ 'name' => 'Large', 'size' => [500, 400], 'mode' => \Imagine\Image\ImageInterface::THUMBNAIL_INSET, 'keepAspectRatio' => true, ], ],
If you need to keep the aspect ratio and upscale the image to have allways se selected size, even if some parts of the image are cropped.
'thumbs' => [ 'small' => [ 'name' => 'Small', 'size' => [100, 100], ], 'medium' => [ 'name' => 'Regular', 'size' => [300, 200], ], 'large' => [ 'name' => 'Large', 'size' => [500, 400], 'forceUpscale' => true, ], ],
If you need to change the color and transparency of borders in inset resizes use this.
'thumbs' => [ 'small' => [ 'name' => 'Small', 'size' => [100, 100], ], 'medium' => [ 'name' => 'Regular', 'size' => [300, 200], ], 'large' => [ 'name' => 'Large', 'size' => [500, 400], 'mode' => \Imagine\Image\ImageInterface::THUMBNAIL_INSET, 'thumbnailBackgroundColor' => 'FFF', 'thumbnailBackgroundAlpha' => 0 ], ],
If you set the 'thumbnailOnTheFly' to true you need to configure the component Thumbnail
'components' => [ 'thumbnail' => [ 'class' => 'fabiomlferreira\filemanager\Thumbnail', 'cachePath' => '@webroot/assets/thumbnails', // path for the folder for temporary thumbnails 'basePath' => '@webroot', 'cacheExpire' => 2592000, // time that the thumbnails keeps in cache 'options' => [ 'placeholder' => [ 'type' => fabiomlferreira\filemanager\Thumbnail::PLACEHOLDER_TYPE_JS, 'backgroundColor' => '#f5f5f5', 'textColor' => '#cdcdcd', 'text' => 'Ooops', 'random' => true, 'cache' => false, ], 'quality' => 75 ] ], ]
Read the Documentation for Thumbnail component
Usage
Simple standalone field:
use fabiomlferreira\filemanager\widgets\FileInput; echo $form->field($model, 'original_thumbnail')->widget(FileInput::className(), [ 'buttonTag' => 'button', 'buttonName' => 'Browse', 'buttonOptions' => ['class' => 'btn btn-default'], 'options' => ['class' => 'form-control'], // Widget template 'template' => '<div class="input-group">{input}<span class="input-group-btn">{button}</span></div>', // Optional, if set, only this image can be selected by user 'thumb' => 'original', // Optional, if set, in container will be inserted selected image 'imageContainer' => '.img', // Default to FileInput::DATA_URL. This data will be inserted in input field 'pasteData' => FileInput::DATA_URL, // JavaScript function, which will be called before insert file data to input. // Argument data contains file data. // data example: [alt: "some description", description: "123", url: "/uploads/2017/03/vedma-100x100.jpeg", id: "45"] 'callbackBeforeInsert' => 'function(e, data) { console.log( data ); }', ]); echo FileInput::widget([ 'name' => 'mediafile', 'buttonTag' => 'button', 'buttonName' => 'Browse', 'buttonOptions' => ['class' => 'btn btn-default'], 'options' => ['class' => 'form-control'], // Widget template 'template' => '<div class="input-group">{input}<span class="input-group-btn">{button}</span></div>', // Optional, if set, only this image can be selected by user 'thumb' => 'original', // Optional, if set, in container will be inserted selected image 'imageContainer' => '.img', // Default to FileInput::DATA_IDL. This data will be inserted in input field 'pasteData' => FileInput::DATA_ID, // JavaScript function, which will be called before insert file data to input. // Argument data contains file data. // data example: [alt: "Ведьма с кошкой", description: "123", url: "/uploads/2014/12/vedma-100x100.jpeg", id: "45"] 'callbackBeforeInsert' => 'function(e, data) { console.log( data ); }', ]);
With TinyMCE:
use fabiomlferreira\filemanager\widgets\TinyMCE; <?= $form->field($model, 'content')->widget(TinyMCE::className(), [ 'clientOptions' => [ 'language' => 'ru', 'menubar' => false, 'height' => 500, 'image_dimensions' => false, 'plugins' => [ 'advlist autolink lists link image charmap print preview anchor searchreplace visualblocks code contextmenu table', ], 'toolbar' => 'undo redo | styleselect | bold italic | alignleft aligncenter alignright alignjustify | bullist numlist outdent indent | link image | code', ], ]); ?>
In model you must set mediafile behavior like this example:
use fabiomlferreira\filemanager\behaviors\MediafileBehavior; public function behaviors() { return [ 'mediafile' => [ 'class' => MediafileBehavior::className(), 'name' => 'post', 'attributes' => [ 'thumbnail', ], ] ]; }
Than, you may get mediafile from your owner model. See example:
use fabiomlferreira\filemanager\models\Mediafile; $model = Post::findOne(1); $mediafile = Mediafile::loadOneByOwner('post', $model->id, 'thumbnail'); // Ok, we have mediafile object! Let's do something with him: // return url for small thumbnail, for example: '/uploads/2014/12/flying-cats.jpg' echo $mediafile->getThumbUrl('small'); // return image tag for thumbnail, for example: '<img src="/uploads/2017/03/flying-dogs.jpg" alt="ypload">' echo $mediafile->getThumbImage('small'); // return url for small thumbnail
fabiomlferreira/yii2-file-manager 适用场景与选型建议
fabiomlferreira/yii2-file-manager 是一款 基于 PHP 开发的 Composer 扩展包,目前已累计 645 次下载、GitHub Stars 达 2, 最近一次更新时间为 2017 年 04 月 03 日, 在 PHP 生态内属于活跃度较高的组件。
它主要适用于以下技术方向: 「image」 「upload」 「file manager」 「filemanager」 「yii2」 等业务场景。在实际项目中,围绕这些方向常见需要落地的问题包括:接口对接、性能调优、并发安全、与既有框架(Laravel / ThinkPHP / Yii / Webman 等)的兼容适配,以及生产环境的日志埋点与稳定性保障。
我们在过去多个企业项目中使用过 fabiomlferreira/yii2-file-manager 或与其功能相近的方案,如果你在选型或落地过程中遇到问题,例如 版本兼容、二次改造、私有化封装、与内部系统对接、生产 BUG 排查,欢迎联系我们协助评估。
基于 fabiomlferreira/yii2-file-manager 在你已有业务上做功能扩展、字段裁剪、UI 适配、与内部账号 / 权限 / 日志系统的深度对接。
线上偶发问题、内存泄漏、慢查询、并发异常等排查修复;针对高流量场景做缓存、队列、索引层面的调优。
承接完整的项目从需求 → 设计 → 开发 → 上线 → 长期运维;也可按月提供技术保姆服务。
与 fabiomlferreira/yii2-file-manager 相关的其它包
同方向 / 同关键字的高下载量 PHP Composer 包推荐,方便对比选型:
The file manager intended for using Laravel with CKEditor / TinyMCE / Colorbox
Yii2 LightBox image galary widget uses Lightbox v2.10.0 by Lokesh Dhakar
The Yii2 extension uses jQuery jquery.carousel-1.1.min.js and makes image carousel from php array of structure defined.
The Yii2 extension uses jQuery PrettyPhoto and OwlCarousel js and makes image galary from php array of structure defined.
Laravel Media Popup to upload/view the files
PMVC Plugin for File information
统计信息
- 总下载量: 645
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 2
- 点击次数: 3
- 依赖项目数: 1
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2017-04-03