videojs.install in Video.js (HTML5 Video Player) 6
Same filename and directory in other branches
Installation file for Video.js module.
File
videojs.installView source
<?php
/**
* @file
* Installation file for Video.js module.
*/
/**
* Implementation of hook_requirements().
*/
function videojs_requirements($phase) {
$requirements = array();
if ($phase == 'runtime') {
$requirements['videojs']['title'] = t('Video.js');
$videojs_version = videojs_get_version();
$dir = variable_get('videojs_directory', 'sites/all/libraries/video-js');
if ($videojs_version == NULL) {
$requirements['videojs']['value'] = t('Not found');
$requirements['videojs']['description'] = t('Missing the Video.js library. Please <a href="@videojs-url">download Video.js</a> and extract it into the %directory directory or any other suitable path for libraries.', array(
'@videojs-url' => url('http://videojs.com'),
'%directory' => $dir,
));
$requirements['videojs']['severity'] = REQUIREMENT_ERROR;
}
elseif (version_compare($videojs_version, '3', '>=')) {
$requirements['videojs']['value'] = t('Unsupported version @version', array(
'@version' => $videojs_version,
));
$requirements['videojs']['description'] = t('The installed Video.js library is not supported. This version of the Video.js module only supports Video.js version 2. <a href="@videojs-url">Download Video.js version 2</a> and extract it into the %directory directory or <a href="@videojs-module-url">download Video.js module version 6.x-2.x or later</a> to use Video.js 3.', array(
'@videojs-url' => url('http://videojs.com'),
'%directory' => $dir,
'@videojs-module-url' => url('http://drupal.org/project/videojs'),
));
$requirements['videojs']['severity'] = REQUIREMENT_ERROR;
}
else {
$requirements['videojs']['value'] = $videojs_version;
$requirements['videojs']['severity'] = REQUIREMENT_OK;
}
}
return $requirements;
}
/**
* Implementation of hook_uninstall().
*/
function videojs_uninstall() {
db_query('DELETE FROM {variable} WHERE name LIKE "videojs_%%"');
}
Functions
Name | Description |
---|---|
videojs_requirements | Implementation of hook_requirements(). |
videojs_uninstall | Implementation of hook_uninstall(). |