You are here

function ZencoderOutputFile::update_attributes in Video 7

1 call to ZencoderOutputFile::update_attributes()
ZencoderOutputFile::ZencoderOutputFile in modules/video_zencoder/includes/Zencoder.php

File

modules/video_zencoder/includes/Zencoder.php, line 107

Class

ZencoderOutputFile

Code

function update_attributes($attributes = array()) {
  foreach ($attributes as $attr_name => $attr_value) {
    if (!function_exists($this->{$attr_name})) {
      $this->{$attr_name} = $attr_value;
    }
  }
}