Needs review
Project:
CDN2 Video
Version:
6.x-1.10
Component:
Code
Priority:
Normal
Category:
Bug report
Assigned:
Unassigned
Reporter:
Created:
16 Jun 2010 at 03:20 UTC
Updated:
18 Oct 2010 at 17:38 UTC
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
Comment #1
IncrediblyKenzi commentedThanks, Steve. I've added and committed this to the 6.x branch.