File: /var/www/vhost/disk-apps/magento.bikenow.co/vendor/laminas/laminas-form/src/View/Helper/Form.php
<?php
/**
* @see https://github.com/laminas/laminas-form for the canonical source repository
* @copyright https://github.com/laminas/laminas-form/blob/master/COPYRIGHT.md
* @license https://github.com/laminas/laminas-form/blob/master/LICENSE.md New BSD License
*/
namespace Laminas\Form\View\Helper;
use Laminas\Form\FieldsetInterface;
use Laminas\Form\FormInterface;
use Laminas\View\Helper\Doctype;
use function array_key_exists;
use function array_merge;
use function method_exists;
use function sprintf;
/**
* View helper for rendering Form objects
*/
class Form extends AbstractHelper
{
/**
* Attributes valid for this tag (form)
*
* @var array
*/
protected $validTagAttributes = [
'accept-charset' => true,
'action' => true,
'autocomplete' => true,
'enctype' => true,
'method' => true,
'name' => true,
'novalidate' => true,
'target' => true,
];
/**
* Invoke as function
*
* @param null|FormInterface $form
* @return Form|string
*/
public function __invoke(FormInterface $form = null)
{
if (! $form) {
return $this;
}
return $this->render($form);
}
/**
* Render a form from the provided $form,
*
* @param FormInterface $form
* @return string
*/
public function render(FormInterface $form)
{
if (method_exists($form, 'prepare')) {
$form->prepare();
}
$formContent = '';
foreach ($form as $element) {
if ($element instanceof FieldsetInterface) {
$formContent .= $this->getView()->formCollection($element);
} else {
$formContent .= $this->getView()->formRow($element);
}
}
return $this->openTag($form) . $formContent . $this->closeTag();
}
/**
* Generate an opening form tag
*
* @param null|FormInterface $form
* @return string
*/
public function openTag(FormInterface $form = null)
{
$doctype = $this->getDoctype();
$attributes = [];
if (! (Doctype::HTML5 === $doctype || Doctype::XHTML5 === $doctype)) {
$attributes = [
'action' => '',
'method' => 'get',
];
}
if ($form instanceof FormInterface) {
$formAttributes = $form->getAttributes();
if (! array_key_exists('id', $formAttributes) && array_key_exists('name', $formAttributes)) {
$formAttributes['id'] = $formAttributes['name'];
}
$attributes = array_merge($attributes, $formAttributes);
}
if ($attributes) {
return sprintf('<form %s>', $this->createAttributesString($attributes));
}
return '<form>';
}
/**
* Generate a closing form tag
*
* @return string
*/
public function closeTag()
{
return '</form>';
}
}