You are here

public function video_preset::properties in Video 6.4

Same name and namespace in other branches
  1. 7 includes/preset.inc \video_preset::properties()

File

includes/preset.inc, line 65

Class

video_preset

Code

public function properties() {
  $presets = $this
    ->getAllPresets();
  $properties = array();
  foreach ($this->presets as $presetvalue) {
    if (isset($presets[$presetvalue])) {
      $properties[$presetvalue] = $presets[$presetvalue]
        ->get_properties();
    }
  }
  return $properties;
}