PHP Classes

File: dash.php

Recommend this page to a friend!
  Classes of Travis Tidwell   Dash Media Player   dash.php   Download  
File: dash.php
Role: Auxiliary script
Content type: text/plain
Description: Dash PHP API file
Class: Dash Media Player
Embed the Dash Media player in a Web page
Author: By
Last change:
Date: 16 years ago
Size: 489 bytes
 

Contents

Class file image Download
<?php
include('DashPlayer.php');
/**
 * Global API function to quickly show the Dash Media Player given a set of parameters.
 *
 * For more information, go to http://www.tmtdigital.com/node/399
 *
 * @param - The parameters used to construct the player.
 *
 * @return - The object code used to display the Dash Media Player in your page.
 */
function dashplayer_get_player( $params = array() )
{
  
$player = new DashPlayer( $params );
   return
$player->getPlayer();
}
?>