'zzz_custom_url',
'name' => $name,
'url' => '',
'settings_description' => t('These settings specifically affect videos displayed from custom URL\'s. When a field uses a URL it determines to be a link directly to a video file, it will embed that file into the content.'),
'supported_features' => $features,
'weight' => 9,
);
}
function video_cck_zzz_custom_url_settings() {
$options = array(
'wmv' => t('Windows Media (wmv)'),
'wma' => t('Windows Media (wma)'),
'swf' => t('Flash (swf)'),
'flv' => t('Flash Video (flv)'),
'mov' => t('Quicktime (mov)'),
'rm' => t('Real Media (rm)'),
);
$form = array();
$form['video_cck_zzz_custom_url_supported_types'] = array(
'#type' => 'checkboxes',
'#title' => t('Supported Types'),
'#options' => $options,
'#default_value' => variable_get('video_cck_zzz_custom_url_supported_types', _video_cck_zzz_custom_url_default_types()),
'#description' => t('Select the video types you wish to support. When a custom url with that type is entered into an embedded video field, it will be parsed and displayed appropriately. If a type is not supported, then it will be ignored.'),
);
return $form;
}
function _video_cck_zzz_custom_url_implode_types() {
return implode('|', variable_get('video_cck_zzz_custom_url_supported_types', _video_cck_zzz_custom_url_default_types()));
}
function video_cck_zzz_custom_url_extract($embed = '') {
$types = _video_cck_zzz_custom_url_implode_types();
if (preg_match('@\ .('. $types .')@i', $embed, $matches)) {
return $embed;
}
return false;
}
function video_cck_zzz_custom_url_data($field, $item) {
$data = array();
// adding the version control
$data['video_cck_zzz_custom_url_data_version'] = 1;
// attempt to get info from headers
$response = emfield_request_header('zzz_custom_url', $item['embed']);
if ($response->code == 200) {
$data['url'] = $item['embed'];
$data['size'] = $response->headers['Content-Length'];
$data['mime'] = $response->headers['Content-Type'];
}
// @todo replace ['type'] with converted mime info if available
$types = _video_cck_zzz_custom_url_implode_types();
$regex = '@\.('. $types .')@i';
if (preg_match($regex, $item['embed'], $matches)) {
$data['type'] = $matches[1];
}
return $data;
}
/**
* hook emfield_PROVIDER_rss
*/
function video_cck_zzz_custom_url_rss($item, $teaser = NULL) {
if ($item['value']) {
if ($item['data']['video_cck_zzz_custom_url_data_version'] >= 1) {
$data = $item['data'];
}
else {
$data = video_cck_zzz_custom_url_data(NULL, $item);
}
$file = array();
if ($data['size'] > 0) {
$file['filepath'] = $data['url'];
$file['filesize'] = $data['size'];
$file['filemime'] = $data['mime'];
}
return $file;
}
}
function video_cck_zzz_custom_url_embedded_link($video_code) {
return $video_code;
}
function theme_video_cck_zzz_custom_url_embedded_video($type, $url, $width, $height, $autoplay = false, $field = NULL, $item = NULL) {
if ($url) {
switch ($type) {
case 'wmv':
case 'wma':
$autostart = $autoplay ? '1' : '0';
return '';
case 'mov':
$autostart = $autoplay ? 'true' : 'false';
return '';
case 'rm':
$autostart = $autoplay ? 'true' : 'false';
return '
';
case 'swf':
return '';
case 'flv':
$autostart = $autoplay ? 'true' : 'false';
return '';
}
}
}
function video_cck_zzz_custom_url_thumbnail($field, $item, $formatter, $node, $width, $height) {
return '';
}
function video_cck_zzz_custom_url_video($code, $width, $height, $field, $item, $autoplay) {
$type = $item['data']['type'];
$output = theme('video_cck_zzz_custom_url_embedded_video', $type, $code, $width, $height, $autoplay, $field, $item);
return $output;
}
function video_cck_zzz_custom_url_preview($code, $width, $height, $field, $item, $autoplay) {
$type = $item['data']['type'];
$output = theme('video_cck_zzz_custom_url_embedded_video', $type, $code, $width, $height, $autoplay, $field, $item);
return $output;
}