And I've implemented it here, just add it to the start of the cdn2_dashplayer.module file:

<?php
/**
 * Implementation of hook_theme().
 */
function cdn2_dashplayer_theme() {
  return array(
    'cdn2_dashplayer' => array(
      'file' => 'cdn2_dashplayer.module',
      'arguments' => array(
        'node' => NULL,
        'asset' => NULL,
        'preset' => NULL,
        'width' => NULL,
        'height' => NULL,
      ),
    )
  );
}
?>

- Steve

Comments

IncrediblyKenzi’s picture

Thanks, Steve. I've added and committed this to the 6.x branch.