'', 'class' =>'', 'width' =>'', 'height' =>'', 'mute' =>'', 'mp4_url' =>'', 'ogv_url' =>'', 'webm_url' =>'', 'poster' =>'', 'autoplay' =>'', 'loop' =>'', 'controls' =>'', 'position' => 'left' ),$args ); extract( $defaults ); self::$args = $defaults; $html = ''; if(is_numeric($width)) $width = $width.'px'; if(is_numeric($height)) $height = $height.'px'; if( $mute == 'yes'): $mute = 'muted'; else: $mute = ''; endif; if( $controls == 'yes'): $controls = 'controls'; else: $controls = ''; endif; if( $loop == 'yes'): $loop = 'loop'; else: $loop = ''; endif; if( $autoplay == 'yes'): $autoplay = 'autoplay' ; else: $autoplay = ''; endif; if( $mp4_url !=='' || $ogv_url !=='' || $webm_url !=='' ){ $html .= '';} else{ $html .= '' ; } return $html; } } new Magee_Video(); endif;