Download the PHP package z_bodya/yii-elfinder without Composer
On this page you can find all versions of the php package z_bodya/yii-elfinder. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Table of contents
Download z_bodya/yii-elfinder
More information about z_bodya/yii-elfinder
Files in z_bodya/yii-elfinder
Download z_bodya/yii-elfinder
More information about z_bodya/yii-elfinder
Files in z_bodya/yii-elfinder
Vendor z_bodya
Package yii-elfinder
Short Description Extension to use elFinder 1.x file manager in yii application
License BSD-3-Clause
Package yii-elfinder
Short Description Extension to use elFinder 1.x file manager in yii application
License BSD-3-Clause
Please rate this library. Is it a good library?
Informations about the package yii-elfinder
ElFinder 1.x Yii extension
- Checkout source code to your project, for example to ext.elFinder
-
Create controller for connector action, and configure it params
class ElfinderController extends CController { public function actions() { return array( 'connector' => array( 'class' => 'ext.elFinder.ElFinderConnectorAction', 'settings' => array( 'root' => Yii::getPathOfAlias('webroot') . '/uploads/', 'URL' => Yii::app()->baseUrl . '/uploads/', 'rootAlias' => 'Home', 'mimeDetect' => 'none' ) ), ); } }
-
ServerFileInput - use this widget to choose file on server using ElFinder pop-up
$this->widget('ext.elFinder.ServerFileInput', array( 'model' => $model, 'attribute' => 'serverFile', 'connectorRoute' => 'admin/elfinder/connector', ) );
-
ImageFileInput - similar to ServerFileInput. Displays small image preview instead of textual path to file.
$this->widget('ext.elFinder.ImageFileInput', array( 'model' => $model, 'attribute' => 'imageFile', 'connectorRoute' => 'admin/elfinder/connector', ) );
-
ElFinderWidget use this widget to manage files
$this->widget('ext.elFinder.ElFinderWidget', array( 'connectorRoute' => 'admin/elfinder/connector', ) );
- To use TinyMceElFinder see: https://bitbucket.org/z_bodya/yii-tinymce
All versions of yii-elfinder with dependencies
PHP Build Version
Package Version
No informations.
The package z_bodya/yii-elfinder contains the following files
Loading the files please wait ....