You are here

public static function video_utility::getExtension in Video 7.2

9 calls to video_utility::getExtension()
theme_video_flv in ./video.theme.inc
Theme wraper on Flash play on 3rd party
theme_video_formatter_player in ./video.theme.inc
Default video cck formatter.
theme_video_html5 in ./video.theme.inc
Theme wrapper for HTML5
TranscoderAbstractionFactoryFfmpeg::setOutput in transcoders/TranscoderAbstractionFactoryFfmpeg.inc
Set output file for transcoding, this would be the result file.
TranscoderAbstractionFactoryZencoder::processPostback in transcoders/TranscoderAbstractionFactoryZencoder.inc
Process postback jobs

... See full list

File

./video.utility.inc, line 112
This file will be used to keep all utility functions data structures.

Class

video_utility
Helper functions for the Video module.

Code

public static function getExtension($filename) {
  return drupal_strtolower(pathinfo($filename, PATHINFO_EXTENSION));
}