__ __ __ __ _____ _ _ _____ _ _ _ | \/ | \ \ / / | __ \ (_) | | / ____| | | | | | \ / |_ __\ V / | |__) | __ ___ ____ _| |_ ___ | (___ | |__ ___| | | | |\/| | '__|> < | ___/ '__| \ \ / / _` | __/ _ \ \___ \| '_ \ / _ \ | | | | | | |_ / . \ | | | | | |\ V / (_| | || __/ ____) | | | | __/ | | |_| |_|_(_)_/ \_\ |_| |_| |_| \_/ \__,_|\__\___| |_____/|_| |_|\___V 2.1 if you need WebShell for Seo everyday contact me on Telegram Telegram Address : @jackleetFor_More_Tools:
<?php
namespace Nextend\Framework\Form\Fieldset;
use Nextend\Framework\Form\AbstractField;
use Nextend\Framework\Sanitize;
class FieldsetRowPlain extends FieldsetRow {
public function renderContainer() {
echo '<div class="n2_form__table_row_plain" data-field="table-row-plain-' . esc_attr($this->name) . '">';
$element = $this->first;
while ($element) {
echo wp_kses($this->decorateElement($element), Sanitize::$adminFormTags);
$element = $element->getNext();
}
echo '</div>';
}
/**
* @param AbstractField $element
*
* @return string
*/
public function decorateElement($element) {
ob_start();
$element->displayElement();
return ob_get_clean();
}
}| Name | Type | Size | Permission | Actions |
|---|---|---|---|---|
| LayerWindow | Folder | 0775 |
|
|
| FieldsetHidden.php | File | 671 B | 0664 |
|
| FieldsetRow.php | File | 1.87 KB | 0664 |
|
| FieldsetRowPlain.php | File | 788 B | 0664 |
|
| FieldsetTableLabel.php | File | 717 B | 0664 |
|
| FieldsetVisualSet.php | File | 1.29 KB | 0664 |
|