You are here

function elfinder_block_view in elFinder file manager 7.3

Same name and namespace in other branches
  1. 7 elfinder.module \elfinder_block_view()
  2. 7.2 elfinder.module \elfinder_block_view()

Implements hook_block_view().

File

./elfinder.module, line 1114

Code

function elfinder_block_view() {

  // Show the block.
  $block = array();
  $block['subject'] = t('File Manager');
  $block['content'] = elfinder_file_browser('backend');
  return $block;
}