Login   Register  
PHP Classes
elePHPant
Icontem

File: dash.php

Recommend this page to a friend!
Stumble It! Stumble It! Bookmark in del.icio.us Bookmark in del.icio.us
  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: 2008-11-05 10:52
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();
}
?>