function videojs_hls_install in Video.js (HTML5 Video Player) 7.3
Same name and namespace in other branches
- 7.2 modules/videojs_hls/videojs_hls.install \videojs_hls_install()
Implements hook_install().
Makes sure that this module is loaded after the Video.js module.
File
- modules/
videojs_hls/ videojs_hls.install, line 12 - Installation file for Video.js HTTP Live Streaming module
Code
function videojs_hls_install() {
db_update('system')
->fields(array(
'weight' => 100,
))
->condition('name', 'videojs_hls')
->execute();
}