You are here

function brightcove_theme in Brightcove Video Connect 7.5

Same name and namespace in other branches
  1. 8.2 brightcove.module \brightcove_theme()
  2. 8 brightcove.module \brightcove_theme()
  3. 6.2 brightcove.module \brightcove_theme()
  4. 6 brightcove.module \brightcove_theme()
  5. 7.7 brightcove.module \brightcove_theme()
  6. 7.2 brightcove.module \brightcove_theme()
  7. 7.3 brightcove.module \brightcove_theme()
  8. 7.4 brightcove.module \brightcove_theme()
  9. 7.6 brightcove.module \brightcove_theme()
  10. 3.x brightcove.module \brightcove_theme()

Implements of hook_theme().

File

./brightcove.module, line 553
Brightcove module is an integration layer between any modules using Brightcove API. It makes all necessary checks for the API and makes settings available to the user.

Code

function brightcove_theme() {
  return array(
    'brightcove_unavailable_message' => array(
      'variables' => array(
        'message' => NULL,
      ),
    ),
  );
}