You are here

function mediafront_block_content in MediaFront 7

Same name and namespace in other branches
  1. 6.2 mediafront.module \mediafront_block_content()
  2. 6 mediafront.module \mediafront_block_content()

Content for the media player block.

1 call to mediafront_block_content()
mediafront_block_view in ./mediafront.module
Implementation of hook_block_view

File

./mediafront.module, line 543

Code

function mediafront_block_content() {
  $preset = variable_get('mediafront_block_preset', '');
  return $preset ? mediafront_get_player($preset) : '';
}