Server IP : 192.158.238.246 / Your IP : 3.145.80.161 Web Server : LiteSpeed System : Linux uniform.iwebfusion.net 4.18.0-553.27.1.lve.1.el8.x86_64 #1 SMP Wed Nov 20 15:58:00 UTC 2024 x86_64 User : jenniferflocom ( 1321) PHP Version : 8.1.32 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : OFF | Pkexec : OFF Directory : /proc/7779/task/7779/cwd/plugins/give/src/Helpers/Form/Template/Utils/ |
Upload File : |
<?php namespace Give\Helpers\Form\Template\Utils; use Give\Form\Template; use Give\FormAPI\Form\Field; use Give\FormAPI\Section; use Give\Helpers\Form\Template as FormTemplateUtils; use WP_Post; class Admin { /** * Render template setting in form metabox. * * @since 2.7.0 * * @param Template $template * * @return string * @global WP_Post $post */ public static function renderMetaboxSettings($template) { global $post; ob_start(); $saveOptions = FormTemplateUtils::getOptions($post->ID, $template->getID()); /* @var Section $option */ foreach ($template->getOptions()->sections as $group) { printf( '<div class="give-row %1$s">', $group->id ); printf( '<div class="give-row-head"> <button type="button" class="give-handlediv" aria-expanded="true"> <span class="toggle-indicator"/> </button> <h2><span>%1$s</span></h2> </div>', $group->name ); echo '<div class="give-row-body">'; /* @var Field $field */ foreach ($group->fields as $field) { $field = $field->toArray(); if (isset($saveOptions[$group->id][$field['id']])) { $field['attributes']['value'] = $saveOptions[$group->id][$field['id']]; } $field['id'] = "{$template->getID()}[{$group->id}][{$field['id']}]"; give_render_field($field); } echo '</div></div>'; } return ob_get_clean(); } }