ZF-4403: Zend_View_Helper_FormFile MAX_FILE_SIZE
Description
Currently I have the following code to have this implemented:
class New_View_Helper_FormFile extends Zend_View_Helper_FormFile
{
public function formFile($name, $value = null, $attribs = null)
{
$xhtml = parent::formFile($name, $value, $attribs);
$endTag = ' />';
if (($this->view instanceof Zend_View_Abstract) && !$this->view->doctype()->isXhtml()) {
$endTag= '>';
}
if (isset($attribs['size']))
{
$xhtml .= '
to have MAX_FILE_SIZE implemented. May be it can be implemented into ZF soon.
Comments
Posted by Thomas Weidner (thomas) on 2008-10-02T12:14:29.000+0000
New feature MAX_FILE_SIZE implemented. Issue can be closed.