Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/bareos/bareos-webui.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'vendor/zendframework/zend-form/src/View/Helper/FormFile.php')
-rw-r--r--vendor/zendframework/zend-form/src/View/Helper/FormFile.php81
1 files changed, 0 insertions, 81 deletions
diff --git a/vendor/zendframework/zend-form/src/View/Helper/FormFile.php b/vendor/zendframework/zend-form/src/View/Helper/FormFile.php
deleted file mode 100644
index 6fbdfab..0000000
--- a/vendor/zendframework/zend-form/src/View/Helper/FormFile.php
+++ /dev/null
@@ -1,81 +0,0 @@
-<?php
-/**
- * Zend Framework (http://framework.zend.com/)
- *
- * @link http://github.com/zendframework/zf2 for the canonical source repository
- * @copyright Copyright (c) 2005-2015 Zend Technologies USA Inc. (http://www.zend.com)
- * @license http://framework.zend.com/license/new-bsd New BSD License
- */
-
-namespace Zend\Form\View\Helper;
-
-use Zend\Form\ElementInterface;
-use Zend\Form\Exception;
-
-class FormFile extends FormInput
-{
- /**
- * Attributes valid for the input tag type="file"
- *
- * @var array
- */
- protected $validTagAttributes = array(
- 'name' => true,
- 'accept' => true,
- 'autofocus' => true,
- 'disabled' => true,
- 'form' => true,
- 'multiple' => true,
- 'required' => true,
- 'type' => true,
- );
-
- /**
- * Render a form <input> element from the provided $element
- *
- * @param ElementInterface $element
- * @throws Exception\DomainException
- * @return string
- */
- public function render(ElementInterface $element)
- {
- $name = $element->getName();
- if ($name === null || $name === '') {
- throw new Exception\DomainException(sprintf(
- '%s requires that the element has an assigned name; none discovered',
- __METHOD__
- ));
- }
-
- $attributes = $element->getAttributes();
- $attributes['type'] = $this->getType($element);
- $attributes['name'] = $name;
- if (array_key_exists('multiple', $attributes) && $attributes['multiple']) {
- $attributes['name'] .= '[]';
- }
-
- $value = $element->getValue();
- if (is_array($value) && isset($value['name']) && !is_array($value['name'])) {
- $attributes['value'] = $value['name'];
- } elseif (is_string($value)) {
- $attributes['value'] = $value;
- }
-
- return sprintf(
- '<input %s%s',
- $this->createAttributesString($attributes),
- $this->getInlineClosingBracket()
- );
- }
-
- /**
- * Determine input type to use
- *
- * @param ElementInterface $element
- * @return string
- */
- protected function getType(ElementInterface $element)
- {
- return 'file';
- }
-}