media_sharestream.formatters.inc in Media: ShareStream 7
File formatters for ShareStream videos.
File
includes/media_sharestream.formatters.incView source
<?php
/**
* @file
* File formatters for ShareStream videos.
*/
/**
* Implements hook_file_formatter_info().
*/
function media_sharestream_file_formatter_info() {
$formatters['media_sharestream_video'] = array(
'label' => t('ShareStream Video'),
'file types' => array(
'video',
),
'default settings' => array(
'width' => 420,
'height' => 315,
'autoplay' => FALSE,
),
'view callback' => 'media_sharestream_file_formatter_video_view',
'settings callback' => 'media_sharestream_file_formatter_video_settings',
'mime types' => array(
'video/sharestream',
),
);
$formatters['media_sharestream_image'] = array(
'label' => t('ShareStream Preview Image'),
'file types' => array(
'video',
),
'default settings' => array(
'image_style' => '',
),
'view callback' => 'media_sharestream_file_formatter_image_view',
'settings callback' => 'media_sharestream_file_formatter_image_settings',
'mime types' => array(
'video/sharestream',
),
);
return $formatters;
}
/**
* Implements hook_file_formatter_FORMATTER_view().
*/
function media_sharestream_file_formatter_video_view($file, $display, $langcode) {
$scheme = file_uri_scheme($file->uri);
// WYSIWYG does not yet support video inside a running editor instance.
if ($scheme == 'sharestream' && empty($file->override['wysiwyg'])) {
$element = array(
'#theme' => 'media_sharestream_video',
'#uri' => $file->uri,
'#options' => array(),
);
// Fake a default for attributes so the ternary doesn't choke.
$display['settings']['attributes'] = array();
foreach (array(
'width',
'height',
'autoplay',
) as $setting) {
$element['#options'][$setting] = isset($file->override[$setting]) ? $file->override[$setting] : $display['settings'][$setting];
}
return $element;
}
}
/**
* Implements hook_file_formatter_FORMATTER_settings().
*/
function media_sharestream_file_formatter_video_settings($form, &$form_state, $settings) {
$element = array();
$element['width'] = array(
'#title' => t('Width'),
'#type' => 'textfield',
'#default_value' => $settings['width'],
'#element_validate' => array(
'_sharestream_validate_video_width_and_height',
),
);
$element['height'] = array(
'#title' => t('Height'),
'#type' => 'textfield',
'#default_value' => $settings['height'],
'#element_validate' => array(
'_sharestream_validate_video_width_and_height',
),
);
// Single Options.
$element['autoplay'] = array(
'#title' => t('Autoplay video on load'),
'#type' => 'checkbox',
'#default_value' => $settings['autoplay'],
);
return $element;
}
/**
* Validation for width and height.
*/
function _sharestream_validate_video_width_and_height($element, &$form_state, $form) {
// Check if the value is a number with an optional decimal or percentage sign,
// or "auto".
if (!empty($element['#value']) && !preg_match('/^(auto|([0-9]*(\\.[0-9]+)?%?))$/', $element['#value'])) {
form_error($element, t("The value entered for @dimension is invalid. Please insert a unitless integer for pixels, a percent, or \"auto\". Note that percent and auto may not function correctly depending on the browser and doctype.", array(
'@dimension' => $element['#title'],
)));
}
}
/**
* Implements hook_file_formatter_FORMATTER_view().
*/
function media_sharestream_file_formatter_image_view($file, $display, $langcode) {
$scheme = file_uri_scheme($file->uri);
if ($scheme == 'sharestream') {
$wrapper = file_stream_wrapper_get_instance_by_uri($file->uri);
$image_style = $display['settings']['image_style'];
$valid_image_styles = image_style_options(FALSE);
if (empty($image_style) || !isset($valid_image_styles[$image_style])) {
$element = array(
'#theme' => 'image',
'#path' => str_replace('http:', '', $wrapper
->getLocalThumbnailPath()),
'#alt' => isset($file->override['attributes']['alt']) ? $file->override['attributes']['alt'] : $file->filename,
);
}
else {
$element = array(
'#theme' => 'image_style',
'#style_name' => $image_style,
'#path' => $wrapper
->getLocalThumbnailPath(),
'#alt' => isset($file->override['attributes']['alt']) ? $file->override['attributes']['alt'] : $file->filename,
);
}
return $element;
}
}
/**
* Implements hook_file_formatter_FORMATTER_settings().
*/
function media_sharestream_file_formatter_image_settings($form, &$form_state, $settings) {
$element = array();
$element['image_style'] = array(
'#title' => t('Image style'),
'#type' => 'select',
'#options' => image_style_options(FALSE),
'#default_value' => $settings['image_style'],
'#empty_option' => t('None (original image)'),
);
return $element;
}
Functions
Name![]() |
Description |
---|---|
media_sharestream_file_formatter_image_settings | Implements hook_file_formatter_FORMATTER_settings(). |
media_sharestream_file_formatter_image_view | Implements hook_file_formatter_FORMATTER_view(). |
media_sharestream_file_formatter_info | Implements hook_file_formatter_info(). |
media_sharestream_file_formatter_video_settings | Implements hook_file_formatter_FORMATTER_settings(). |
media_sharestream_file_formatter_video_view | Implements hook_file_formatter_FORMATTER_view(). |
_sharestream_validate_video_width_and_height | Validation for width and height. |