You are here

function soundmanager2_block_info in SoundManager2 7.2

Implements hook_block_info(). Define a block for debug information of the soundmanager2.

File

./soundmanager2.module, line 150
Responsible for managing the required SWF and JS files for soundmanager2 to work

Code

function soundmanager2_block_info() {
  $blocks['sm2_debug'] = array(
    'info' => t('SoundManager 2 Debug'),
  );
  return $blocks;
}