2017 © Pedro Peláez
 

yii2-extension yii2-filemanager

A file manager for Yii2. Allow you to dynamically manager images and files from any location

image

linchpinstudios/yii2-filemanager

A file manager for Yii2. Allow you to dynamically manager images and files from any location

  • Saturday, April 18, 2015
  • by linchpin
  • Repository
  • 13 Watchers
  • 23 Stars
  • 1,039 Installations
  • PHP
  • 2 Dependents
  • 0 Suggesters
  • 14 Forks
  • 7 Open issues
  • 2 Versions
  • 3 % Grown

The README.md

Yii2 File Manager

A file manager for Yii2. Allow you to dynamically manager images and files from any location. Also TinyMCE plugin included., (*1)

Installation

The preferred way to install this extension is through composer., (*2)

Either run, (*3)

php composer.phar require --prefer-dist linchpinstudios/yii2-filemanager "*"

or add, (*4)

"linchpinstudios/yii2-filemanager": "*"

to the require section of your composer.json file., (*5)

3) Run Migrations
./yii migrate/up --migrationPath=@vendor/linchpinstudios/yii2-filemanager/migrations

Configure

Add the module to the main configuration., (*6)

<?php
return [
    //...
    'modules' => [
        //...
        'filemanager' => [
            'class'         => 'linchpinstudios\filemanager\Module',
            'thumbnails'    => [[100,100]],                                              // Optional: array
            'path'          => '/images/uploads/',                                       // Default relative to your web directory or AWS
            'thumbPath'     => '/images/uploads/thumb/',                                 // Default relative to your web directory or AWS
            'url'           => '/',                                                      // either s3 buket URL or CloudFront (can be changed)
            'aws'           => [
                'enable'        => true,
                'key'           => 'YOURAWS_KEY',
                'secret'        => 'YOURAWS_SECRET',
                'bucket'        => 'your-bucket',
            ],
        ],
        //...
    ],
?>

Usage

Once the extension is installed, you can access the Module by navigating to http://yourdomain.com/index.php?r=filemanager, (*7)

Tiny MCE

To use the File Manager with Tiny MCE you need to register the scripts with Yii., (*8)

Add Use to head of controller., (*9)

use linchpinstudios\filemanager\assets\FilemanagerTinyAssets;

Add Register to controller action., (*10)

FilemanagerTinyAssets::register($this->view);

Then add the 'filemanager' plugin to the Tiny MCE plugin. (Example using 2amigos Tiny MCE Package found HERE), (*11)

<?= $form->field($model, 'text')->widget(TinyMce::className(), [
    'options' => ['rows' => 6],
    'language' => 'en',
    'clientOptions' => [
        'plugins' => [
            "advlist autolink lists link charmap print preview anchor",
            "searchreplace visualblocks code fullscreen",
            "insertdatetime media table contextmenu paste filemanager"
        ],
        'toolbar' => "undo redo | styleselect | bold italic | alignleft aligncenter alignright alignjustify | bullist numlist outdent indent | link image | filemanager"
    ]
]);?>

Notes

Widget and other items still in development., (*12)

The Versions

18/04 2015

dev-master

9999999-dev

A file manager for Yii2. Allow you to dynamically manager images and files from any location

  Sources   Download

MIT

The Requires

 

The Development Requires

by Josh Hagel

file extension yii2 aws manager

07/11 2014

dev-feature/fileupload

dev-feature/fileupload

A file manager for Yii2. Allow you to dynamically manager images and files from any location

  Sources   Download

MIT

The Requires

 

by Josh Hagel

file extension yii2 aws manager