You are here

function videojs_hls_install in Video.js (HTML5 Video Player) 7.2

Same name and namespace in other branches
  1. 7.3 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();
}