*prechod na novsiu verziu ZF
[sport-group.git] / library / Zend / View / Helper / HtmlObject.php
blob1f83dec0cc9a99b8fcd74bd4613a4a568b993243
1 <?php
2 /**
3 * Zend Framework
5 * LICENSE
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.
15 * @category Zend
16 * @package Zend_View
17 * @subpackage Helper
18 * @copyright Copyright (c) 2005-2009 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 16222 2009-06-21 19:55:20Z thomas $
23 /**
24 * @see Zend_View_Helper_HtmlElement
26 require_once 'Zend/View/Helper/HtmlElement.php';
28 /**
29 * @category Zend
30 * @package Zend_View
31 * @subpackage Helper
32 * @copyright Copyright (c) 2005-2009 Zend Technologies USA Inc. (http://www.zend.com)
33 * @license http://framework.zend.com/license/new-bsd New BSD License
35 class Zend_View_Helper_HtmlObject extends Zend_View_Helper_HtmlElement
37 /**
38 * Output an object set
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
47 public function htmlObject($data, $type, array $attribs = array(), array $params = array(), $content = null)
49 // Merge data and type
50 $attribs = array_merge(array('data' => $data,
51 'type' => $type), $attribs);
53 // Params
54 $paramHtml = array();
55 $closingBracket = $this->getClosingBracket();
57 foreach ($params as $param => $options) {
58 if (is_string($options)) {
59 $options = array('value' => $options);
62 $options = array_merge(array('name' => $param), $options);
64 $paramHtml[] = '<param' . $this->_htmlAttribs($options) . $closingBracket;
67 // Content
68 if (is_array($content)) {
69 $content = implode(self::EOL, $content);
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>';
78 return $xhtml;