You are here

public function video_preset::__construct in Video 6.5

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

File

./video.lib.inc, line 122
File containing Video module interfaces and classes

Class

video_preset

Code

public function __construct(stdClass $dbdata) {
  $this->id = $dbdata->id;
  $this->name = $dbdata->name;
  $this->help = $dbdata->help;
  $this->extension = $dbdata->extension;
  $this->filenamesuffix = $dbdata->filenamesuffix;
}