0byt3m1n1
Path:
/
data
/
applications
/
aps
/
magento
/
1.1.3-2
/
standard
/
htdocs
/
lib
/
Zend
/
View
/
Helper
/
[
Home
]
File: Form.php
<?php /** * Zend Framework * * LICENSE * * This source file is subject to version 1.0 of the Zend Framework * license, that is bundled with this package in the file LICENSE.txt, and * is available through the world-wide-web at the following URL: * http://framework.zend.com/license/new-bsd. If you did not receive * a copy of the Zend Framework license and are unable to obtain it * through the world-wide-web, please send a note to license@zend.com * so we can mail you a copy immediately. * * @category Zend * @package Zend_View * @subpackage Helper * @copyright Copyright (c) 2005-2008 Zend Technologies USA Inc. (http://www.zend.com) * @version $Id: Form.php 8487 2008-02-29 21:33:49Z matthew $ * @license http://framework.zend.com/license/new-bsd New BSD License */ /** Zend_View_Helper_FormElement */ #require_once 'Zend/View/Helper/FormElement.php'; /** * Helper for rendering HTML forms * * @package Zend_View * @subpackage Helper * @copyright Copyright (c) 2005-2008 Zend Technologies USA Inc. (http://www.zend.com) * @license http://framework.zend.com/license/new-bsd New BSD License */ class Zend_View_Helper_Form extends Zend_View_Helper_FormElement { /** * @var Zend_View_Instance */ public $view; /** * Set view object * * @param Zend_View_Interface $view * @return Zend_View_Helper_Form */ public function setView(Zend_View_Interface $view) { $this->view = $view; return $this; } /** * Render HTML form * * @param string $name Form name * @param null|array $attribs HTML form attributes * @param false|string $content Form content * @return string */ public function form($name, $attribs = null, $content = false) { $info = $this->_getInfo($name, $content, $attribs); extract($info); if (!empty($name)) { $name = ' name="' . $this->view->escape($name) . '"'; } if (!empty($id)) { $id = ' id="' . $this->view->escape($id) . '"'; } $xhtml = '<form' . $name . $id . $this->_htmlAttribs($attribs) . '>'; if (false !== $content) { $xhtml .= $content . '</form>'; } return $xhtml; } }