Skip to content

Extension to use elFinder 1.x file manager in Yii2 application

Notifications You must be signed in to change notification settings

zxbodya/yii2-elfinder

Folders and files

NameName
Last commit message
Last commit date

Latest commit

98dd330 · Oct 23, 2017

History

27 Commits
Oct 16, 2017
Aug 31, 2012
Oct 1, 2014
Oct 16, 2017
Oct 1, 2014
Mar 24, 2017
Oct 1, 2014
Oct 1, 2014
Oct 1, 2014
Jan 16, 2013
Jan 16, 2013

Repository files navigation

ElFinder 1.x Yii2 extension

Extension to simplify adding elFinder to Yii2 project.

Extension is rework from Yii 1.1 extension:

https://github.com/zxbodya/yii-elfinder

##Installation The preferred way to install this extension is through composer.

Either run

php composer.phar require --prefer-dist zxbodya/yii2-elfinder "*@dev"

or add

"zxbodya/yii2-elfinder": "*@dev"

to the require section of your composer.json file.

Backend controller configuration

namespace backend\controllers;         
use Yii;       
use yii\web\Controller;         
use zxbodya\yii2\elfinder\ConnectorAction; 
      
class ElFinderController extends Controller         
{         
    public function actions()         
    {         
        return [         
            'connector' => array(         
                'class' => ConnectorAction::className(),         
                'settings' => array(         
                    'root' => Yii::getAlias('@webroot') . '/uploads/',                    
                    'URL' => Yii::getAlias('@web') . '/uploads/',         
                    'rootAlias' => 'Home',         
                    'mimeDetect' => 'none'         
                )                    
            ),         
        ];                    
    }         
}

Widgets usage

FileInput

widget to choose file on server using ElFinder pop-up

echo $form->field($model, 'filePath')->widget(
    ElFinderInput::className(),
    ['connectorRoute' => 'el-finder/connector',]
)

ElFinderWidget

echo ElFinderWidget::widget(
    ['connectorRoute' => 'el-finder/connector',]
)

TinyMce integration

Widgets supports intergation with TinyMce wysiwyg editor For more details see tinymce extension https://github.com/zxbodya/yii2-tinymce