ascvh@#%(^-^)V ?host,ip,port,protocol,title,domain,country,city,link,org ???à JFIF  x x ?? C         ?? C   ?à   " ??     ?? μ  } !1AQa "q2?‘?#B±áR?e$3br? %&'()*456789:CDEFGHIJSTUVWXYZcdefghijstuvwxyz??…???‰?’“”?–—???¢£¤¥|§¨?a23′μ?·?1o??????èéêòó???×?ùúáa?????èéê?òó???÷?ùú??     ?? μ   w !1AQ aq"2?B‘?±á #3Rebr?{ gilour

File "FieldsetHidden.php"

Full Path: /home/zcziejy/ryadselyen/Nextend/Framework/Form/Fieldset/FieldsetHidden.php
File size: 671 bytes
MIME-type: text/x-php
Charset: utf-8

<?php


namespace Nextend\Framework\Form\Fieldset;

use Nextend\Framework\Form\AbstractFieldset;
use Nextend\Framework\Sanitize;

class FieldsetHidden extends AbstractFieldset {

    public function __construct($insertAt) {

        parent::__construct($insertAt, '');
    }

    public function renderContainer() {

        if ($this->first) {
            echo '<div class="n2_form_element--hidden">';

            $element = $this->first;
            while ($element) {
                echo wp_kses($this->decorateElement($element), Sanitize::$adminFormTags);

                $element = $element->getNext();
            }

            echo '</div>';
        }
    }

}