• Main Page
  • Related Pages
  • Namespaces
  • Data Structures
  • Files
  • Examples
  • File List

E:/E/GEAMP/www/openbiz/openbiz/others/Zend/View/Helper/HtmlFlash.php

00001 <?php
00026 require_once 'Zend/View/Helper/HtmlObject.php';
00027 
00035 class Zend_View_Helper_HtmlFlash extends Zend_View_Helper_HtmlObject
00036 {
00041     const TYPE = 'application/x-shockwave-flash';
00042 
00052     public function htmlFlash($data, array $attribs = array(), array $params = array(), $content = null)
00053     {
00054         // Params
00055         $params = array_merge(array('movie'   => $data,
00056                                     'quality' => 'high'), $params);
00057 
00058         return $this->htmlObject($data, self::TYPE, $attribs, $params, $content);
00059     }
00060 }

Generated on Thu Apr 19 2012 17:01:18 for openbiz by  doxygen 1.7.2