web/lib/Zend/View/Helper/HtmlObject.php
changeset 64 162c1de6545a
parent 19 1c2f13fd785c
child 68 ecaf28ffe26e
equal deleted inserted replaced
63:5b37998e522e 64:162c1de6545a
       
     1 <?php
       
     2 /**
       
     3  * Zend Framework
       
     4  *
       
     5  * LICENSE
       
     6  *
       
     7  * This source file is subject to the new BSD license that is bundled
       
     8  * with this package in the file LICENSE.txt.
       
     9  * It is also available through the world-wide-web at this URL:
       
    10  * http://framework.zend.com/license/new-bsd
       
    11  * If you did not receive a copy of the license and are unable to
       
    12  * obtain it through the world-wide-web, please send an email
       
    13  * to license@zend.com so we can send you a copy immediately.
       
    14  *
       
    15  * @category   Zend
       
    16  * @package    Zend_View
       
    17  * @subpackage Helper
       
    18  * @copyright  Copyright (c) 2005-2010 Zend Technologies USA Inc. (http://www.zend.com)
       
    19  * @license    http://framework.zend.com/license/new-bsd     New BSD License
       
    20  * @version    $Id: HtmlObject.php 20096 2010-01-06 02:05:09Z bkarwin $
       
    21  */
       
    22 
       
    23 /**
       
    24  * @see Zend_View_Helper_HtmlElement
       
    25  */
       
    26 require_once 'Zend/View/Helper/HtmlElement.php';
       
    27 
       
    28 /**
       
    29  * @category   Zend
       
    30  * @package    Zend_View
       
    31  * @subpackage Helper
       
    32  * @copyright  Copyright (c) 2005-2010 Zend Technologies USA Inc. (http://www.zend.com)
       
    33  * @license    http://framework.zend.com/license/new-bsd     New BSD License
       
    34  */
       
    35 class Zend_View_Helper_HtmlObject extends Zend_View_Helper_HtmlElement
       
    36 {
       
    37     /**
       
    38      * Output an object set
       
    39      *
       
    40      * @param string $data The data file
       
    41      * @param string $type Data file type
       
    42      * @param array  $attribs Attribs for the object tag
       
    43      * @param array  $params Params for in the object tag
       
    44      * @param string $content Alternative content for object
       
    45      * @return string
       
    46      */
       
    47     public function htmlObject($data, $type, array $attribs = array(), array $params = array(), $content = null)
       
    48     {
       
    49         // Merge data and type
       
    50         $attribs = array_merge(array('data' => $data,
       
    51                                      'type' => $type), $attribs);
       
    52 
       
    53         // Params
       
    54         $paramHtml = array();
       
    55         $closingBracket = $this->getClosingBracket();
       
    56 
       
    57         foreach ($params as $param => $options) {
       
    58             if (is_string($options)) {
       
    59                 $options = array('value' => $options);
       
    60             }
       
    61 
       
    62             $options = array_merge(array('name' => $param), $options);
       
    63 
       
    64             $paramHtml[] = '<param' . $this->_htmlAttribs($options) . $closingBracket;
       
    65         }
       
    66 
       
    67         // Content
       
    68         if (is_array($content)) {
       
    69             $content = implode(self::EOL, $content);
       
    70         }
       
    71 
       
    72         // Object header
       
    73         $xhtml = '<object' . $this->_htmlAttribs($attribs) . '>' . self::EOL
       
    74                  . implode(self::EOL, $paramHtml) . self::EOL
       
    75                  . ($content ? $content . self::EOL : '')
       
    76                  . '</object>';
       
    77 
       
    78         return $xhtml;
       
    79     }
       
    80 }