You are here

function video_get_preset in Video 7.2

Same name and namespace in other branches
  1. 7 modules/video_ui/video.preset.inc \video_get_preset()

Retrieves a single preset.

Deprecated

Use Preset::getPreset().

1 call to video_get_preset()
video_field_formatter_settings_form in ./video.field.inc
Implements hook_field_formatter_settings_form().

File

modules/video_ui/video.preset.inc, line 882
Administrative interface for maintaining video presets.

Code

function video_get_preset($preset_name) {
  return Preset::getPreset($preset_name);
}