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/FormCheckbox.php')
-rw-r--r--vendor/zendframework/zend-form/src/View/Helper/FormCheckbox.php85
1 files changed, 0 insertions, 85 deletions
diff --git a/vendor/zendframework/zend-form/src/View/Helper/FormCheckbox.php b/vendor/zendframework/zend-form/src/View/Helper/FormCheckbox.php
deleted file mode 100644
index aee31bf..0000000
--- a/vendor/zendframework/zend-form/src/View/Helper/FormCheckbox.php
+++ /dev/null
@@ -1,85 +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\Element\Checkbox as CheckboxElement;
-use Zend\Form\Exception;
-
-class FormCheckbox extends FormInput
-{
- /**
- * Render a form <input> element from the provided $element
- *
- * @param ElementInterface $element
- * @throws Exception\InvalidArgumentException
- * @throws Exception\DomainException
- * @return string
- */
- public function render(ElementInterface $element)
- {
- if (!$element instanceof CheckboxElement) {
- throw new Exception\InvalidArgumentException(sprintf(
- '%s requires that the element is of type Zend\Form\Element\Checkbox',
- __METHOD__
- ));
- }
-
- $name = $element->getName();
- if (empty($name) && $name !== 0) {
- throw new Exception\DomainException(sprintf(
- '%s requires that the element has an assigned name; none discovered',
- __METHOD__
- ));
- }
-
- $attributes = $element->getAttributes();
- $attributes['name'] = $name;
- $attributes['type'] = $this->getInputType();
- $attributes['value'] = $element->getCheckedValue();
- $closingBracket = $this->getInlineClosingBracket();
-
- if ($element->isChecked()) {
- $attributes['checked'] = 'checked';
- }
-
- $rendered = sprintf(
- '<input %s%s',
- $this->createAttributesString($attributes),
- $closingBracket
- );
-
- if ($element->useHiddenElement()) {
- $hiddenAttributes = array(
- 'disabled' => isset($attributes['disabled']) ? $attributes['disabled'] : false,
- 'name' => $attributes['name'],
- 'value' => $element->getUncheckedValue(),
- );
-
- $rendered = sprintf(
- '<input type="hidden" %s%s',
- $this->createAttributesString($hiddenAttributes),
- $closingBracket
- ) . $rendered;
- }
-
- return $rendered;
- }
-
- /**
- * Return input type
- *
- * @return string
- */
- protected function getInputType()
- {
- return 'checkbox';
- }
-}