| Server IP : 68.183.124.220 / Your IP : 216.73.216.141 Web Server : Apache/2.4.18 (Ubuntu) System : Linux Sandbox-A 4.4.0-210-generic #242-Ubuntu SMP Fri Apr 16 09:57:56 UTC 2021 x86_64 User : gavin ( 1000) PHP Version : 7.0.33-0ubuntu0.16.04.16 Disable Function : pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority, MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : ON | Pkexec : ON Directory : /home/gavin/ninja-forms/includes/Templates/ |
Upload File : |
<div class="wrap">
<form action="" method="post">
<table class="form-table">
<tbody>
<tr id="row_nf_export_form">
<th scope="row">
<label for="nf_export_form_2"><?php echo __( 'Select a form', 'ninja-forms' ); ?></label>
</th>
<td style="width:30%;">
<select name="nf_export_form" id="nf_export_form" class="">
<?php foreach( $forms as $form ): ?>
<option value="<?php echo
$form['id']; ?>"<?php echo $form[ 'selected' ];?>><?php echo $form['title'] . " ( ID: " .
$form['id'] . " )"; ?></option>
<?php endforeach; ?>
</select>
</td>
<td style="position:relative;" style="width:30%;">
<input type="text" name="nf_export_form_2"
id="nf_export_form_2"
class="nf_export_input" autocomplete="off"
placeholder="Filter Forms"
/>
<div class="nf-form-dropdown">
<ul class="widefat" id="nf_form_export_options">
<?php foreach( $forms as $form ): ?>
<li class="nf-form-option"
data-val="<?php echo intval( $form[ 'id' ] );
?>">
<span class="nf-form-option-item"><?php echo
$form[ 'title' ]
. " ( ID: "
. $form[ 'id' ] . " )"; ?>
</span>
</li>
<?php endforeach; ?>
</ul>
</div>
</td>
</tr>
<tr id="row_nf_export_form_encoding">
<th scope="row">
<label for="nf_export_form_turn_off_encoding"><?php
_e( 'Disable UTF-8 Encoding', 'ninja-forms' );
?></label>
</th>
<td colspan="2">
<input type="checkbox" name="nf_export_form_turn_off_encoding"
id="nf_export_form_turn_off_encoding">
<label style="color:red;font-style: italic;"
for="nf_export_form_turn_off_encoding">
If you are having trouble with form imports, please
click here to disable UTF-8 encoding and try again.
</label>
</td>
</tr>
<tr id="row_nf_export_form_submit">
<th scope="row">
<label for="nf_export_form_submit"><?php _e( 'Export Form', 'ninja-forms' ); ?></label>
</th>
<td>
<input type="submit" id="nf_export_form_submit" class="button-secondary" value="<?php echo __( 'Export Form', 'ninja-forms' ) ;?>">
</td>
</tr>
</tbody>
</table>
</form>
</div>