* porting to Drupal 6 * @author Heshan Wanigasooriya * @todo */ //TODO: When we will release a stable version we have to document all the APIs // the video module have function hook_v_info() {}; /** * This hook is called by the video_image plugins once * TODO: better documentation */ function hook_v_autothumbnail($node) { ; } /** The hook_v_get_params is used by plugins to write an html param inside inside video generated object tag during the play. @param $node the node on which is being played @return a keyed array of tipe 'param_name'=>'param_value' */ function hook_v_get_params(&$node) { return array('flashVars' => 'autostart=true&url=false'); }