2017 © Pedro Peláez
 

yii2-extension yii2-elfinder

elFinder file manager for Yii 2

image

alexantr/yii2-elfinder

elFinder file manager for Yii 2

  • Monday, April 2, 2018
  • by alexantr
  • Repository
  • 1 Watchers
  • 16 Stars
  • 4,826 Installations
  • PHP
  • 2 Dependents
  • 0 Suggesters
  • 3 Forks
  • 0 Open issues
  • 12 Versions
  • 46 % Grown

The README.md

elFinder file manager for Yii 2

This extension integrates an elFinder 2.1 file manager into Yii framework 2.0., (*1)

Latest Stable Version Total Downloads License Build Status, (*2)

Installation

Install extension through composer:, (*3)

composer require alexantr/yii2-elfinder

Usage

Configure actions

For using elFinder you must create and configure controller. See complete example with actions for elFinder's connector, InputFile widget, CKEditor filebrowser* options and TinyMCE file_picker_callback option:, (*4)

 [
                'class' => ConnectorAction::className(),
                'options' => [
                    'roots' => [
                        [
                            'driver' => 'LocalFileSystem',
                            'path' => Yii::getAlias('@webroot') . DIRECTORY_SEPARATOR . 'uploads',
                            'URL' => Yii::getAlias('@web') . '/uploads/',
                            'mimeDetect' => 'internal',
                            'imgLib' => 'gd',
                            'accessControl' => function ($attr, $path) {
                                // hide files/folders which begins with dot
                                return (strpos(basename($path), '.') === 0) ?
                                    !($attr == 'read' || $attr == 'write') :
                                    null;
                            },
                        ],
                    ],
                ],
            ],
            'input' => [
                'class' => InputFileAction::className(),
                'connectorRoute' => 'connector',
            ],
            'ckeditor' => [
                'class' => CKEditorAction::className(),
                'connectorRoute' => 'connector',
            ],
            'tinymce' => [
                'class' => TinyMCEAction::className(),
                'connectorRoute' => 'connector',
            ],
        ];
    }
}
```

Reed [elFinder docs](https://github.com/Studio-42/elFinder/wiki/Connector-configuration-options-2.1) to configure
connector options.

### InputFile widget

Example of `InputFile` widget with enabled mime filter and preview:

```php
= alexantr\elfinder\InputFile::widget([
    'name' => 'attributeName',
    'clientRoute' => 'elfinder/input',
    'filter' => ['image'],
    'preview' => function ($value) {
        return yii\helpers\Html::img($value, ['width' => 200]);
    },
]) ?>

Note 1: Filter option is using to display only certain files based on their mime type. Check onlyMimes option in elFinder docs., (*5)

Note 2: Preview displays only predefined (saved earlier) input value and not updating on the fly after new selection., (*6)

If you want to use the InputFile widget in ActiveForm, it can be done like this:, (*7)

<?= $form->field($model, 'attributeName')
    ->widget(alexantr\elfinder\InputFile::className(), [
        'clientRoute' => 'elfinder/input',
    ]) ?>

Using textarea instead text input (can be useful with enabled multiple selection):, (*8)

<?= alexantr\elfinder\InputFile::widget([
    'name' => 'attributeName',
    'clientRoute' => 'elfinder/input',
    'textarea' => true,
    'textareaRows' => 3, // default is 5
]) ?>

Enable multiple selection to select more than one file in one input:, (*9)

<?= alexantr\elfinder\InputFile::widget([
    'name' => 'attributeName',
    'clientRoute' => 'elfinder/input',
    'multiple' => true,
]) ?>

Default paths separator for text input is comma and newline character for textarea. You can change them in InputFileAction configuration:, (*10)

class ElfinderController extends Controller
{
    public function actions()
    {
        return [
            // ...
            'input' => [
                'class' => InputFileAction::className(),
                'connectorRoute' => 'connector',
                'separator' => ',',
                'textareaSeparator' => '\n', // newline character in javascript
            ],
            // ...
        ];
    }
}

Integration with CKEditor

For using elFinder with CKEditor widget (like this one) you need to specify options filebrowserBrowseUrl and (or) filebrowserImageBrowseUrl:, (*11)

<?= alexantr\ckeditor\CKEditor::widget([
    'name' => 'attributeName',
    'clientOptions' => [
        // ...
        'filebrowserBrowseUrl' => yii\helpers\Url::to(['elfinder/ckeditor']),
        'filebrowserImageBrowseUrl' => yii\helpers\Url::to(['elfinder/ckeditor', 'filter' => 'image']),
    ],
]) ?>

Note: For filebrowserImageBrowseUrl we use filter query param to display only images., (*12)

Integration with TinyMCE 4 & 5

For using elFinder with TinyMCE widget (like this one) you need to specify option file_picker_callback:, (*13)

<?= alexantr\tinymce\TinyMce::widget([
    'name' => 'attributeName',
    'clientOptions' => [
        // ...
        'file_picker_callback' => alexantr\elfinder\TinyMCE::getFilePickerCallback(['elfinder/tinymce']),
    ],
]) ?>

Note: option file_picker_callback available since 4.1.0 version of TinyMCE js plugin., (*14)

With second param in getFilePickerCallback() you can set additional settings for tinymce.activeEditor.windowManager.open (TinyMCE 4) or tinymce.activeEditor.windowManager.openUrl (TinyMCE 5):, (*15)

TinyMCE::getFilePickerCallback(['elfinder/tinymce'], ['width' => 1200, 'height' => 600])

Standalone file manager

Add ElFinder widget to any view:, (*16)

<?= alexantr\elfinder\ElFinder::widget([
    'connectorRoute' => ['elfinder/connector'],
    'settings' => [
        'height' => 640,
    ],
    'buttonNoConflict' => true,
]) ?>

Note: If you are using Bootstrap 3 enable buttonNoConflict option to resolve conflict between Bootstrap and jQuery UI buttons., (*17)

The Versions

02/04 2018

dev-master

9999999-dev

elFinder file manager for Yii 2

  Sources   Download

MIT

The Requires

 

yii2 widget elfinder file manager

02/04 2018

1.3.0

1.3.0.0

elFinder file manager for Yii 2

  Sources   Download

MIT

The Requires

 

yii2 widget elfinder file manager

14/03 2018

1.2.1

1.2.1.0

elFinder file manager for Yii 2

  Sources   Download

MIT

The Requires

 

yii2 widget elfinder file manager

07/03 2018

1.2.0

1.2.0.0

elFinder file manager for Yii 2

  Sources   Download

MIT

The Requires

 

yii2 widget elfinder file manager

04/11 2017

1.1.6

1.1.6.0

elFinder file manager for Yii 2

  Sources   Download

MIT

The Requires

 

yii2 widget elfinder file manager

08/07 2017

1.1.5

1.1.5.0

elFinder file manager for Yii 2

  Sources   Download

MIT

The Requires

 

yii2 widget elfinder file manager

13/06 2017

1.1.4

1.1.4.0

elFinder file manager for Yii 2

  Sources   Download

MIT

The Requires

 

yii2 widget elfinder file manager

29/05 2017

1.1.3

1.1.3.0

elFinder file manager for Yii 2

  Sources   Download

MIT

The Requires

 

yii2 widget elfinder file manager

23/11 2016

1.1.2

1.1.2.0

elFinder file manager for Yii 2

  Sources   Download

MIT

The Requires

 

yii2 widget elfinder file manager

22/11 2016

1.1.1

1.1.1.0

elFinder file manager for Yii 2

  Sources   Download

MIT

The Requires

 

yii2 widget elfinder file manager

21/11 2016

1.1.0

1.1.0.0

elFinder file manager for Yii 2

  Sources   Download

MIT

The Requires

 

yii2 widget elfinder file manager

20/11 2016

1.0.0

1.0.0.0

elFinder file manager for Yii 2

  Sources   Download

MIT

The Requires

 

yii2 widget elfinder file manager