You are here

function elfinder_block_info in elFinder file manager 7.3

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

Implements hook_block_info().

File

./elfinder.module, line 1104

Code

function elfinder_block_info() {

  // Makes it show up on /admin/build/block page.
  $blocks = array();
  $blocks[0]['info'] = t('File Manager');
  return $blocks;
}