1.1.2 • Published 1 year ago

elfinder-picker v1.1.2

Weekly downloads
-
License
MIT
Repository
github
Last release
1 year ago

elFinder Picker

Enable your website users to select files using elFinder File Browser. You can also use this tool as a file picker module for tinyMCE editor

Demo

Coming soon

Dependencies

Installation

Bower

Run bower install elfinder-picker

NPM

Run npm i -s elfinder-picker

Yarn

Run yarn add elfinder-picker

Manual Install

Downoad elFinder Picker

Add to Project

Add elFinder Picker to your project

<script src="/path/to/elFinderPicker.js"></script>
<link type="text/css" rel="stylesheet" href="/path/to/elFinderPicker.css" />

Configure elFinder Picker as shown

<script>
  elFinderPicker.config({ url: 'path/to/elfinder.html' });
</script>

Configure elFinder

// We use this to configure whether double-clicking should open or select file
var isSelectMode =
	window.frameElement &&
	window.frameElement.getAttribute("data-mode") === "select";

var selectFile = function(file, fm) {
	parent.elFinderPicker.oninsert(file, fm);
}

// Configuration for elFinder
{
	url : '/path/to/elfinder/connector.php',
	getFileCallback : isSelectMode ? selectFile : undefined
}

Usage

Using elFinder Picker Directly

elFinderPicker.open( callback ) The callback function takes two arguments:

Example

<button onclick="elFinderPicker.open( function( url, info ){  $("#input").val( url ) } )">Pick File</button>

TinyMCE Integration

tinymce.init({
  selector: '.text-editor',
  height: 350,
  plugins: [],
  file_picker_callback: elFinderPicker.open,
});
1.1.1

1 year ago

1.1.2

1 year ago

1.0.1

1 year ago

1.0.0

1 year ago