PluginProbe
HTML Forms – Simple WordPress Forms Plugin / 1.0.1
HTML Forms – Simple WordPress Forms Plugin v1.0.1
1.7.0 trunk 1.0 1.0.1 1.0.2 1.0.3 1.0.4 1.0.5 1.0.6 1.1 1.1.1 1.1.2 1.1.3 1.1.4 1.1.5 1.2.0 1.3.0 1.3.1 1.3.10 1.3.11 1.3.12 1.3.13 1.3.14 1.3.15 1.3.16 All 67 releases
html-forms / src / Admin / views / global-settings.php

global-settings.php in HTML Forms – Simple WordPress Forms Plugin 1.0.1, at src/Admin/views/global-settings.php

32 lines 1.4 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php defined( 'ABSPATH' ) or exit; ?>
2
3 <div class="wrap hf">
4
5 <p class="breadcrumbs">
6 <span class="prefix"><?php echo __( 'You are here: ', 'html-forms' ); ?></span>
7 <a href="<?php echo admin_url( 'admin.php?page=html-forms' ); ?>">HTML Forms</a> &rsaquo;
8 <span class="current-crumb"><strong><?php _e( 'Settings', 'html-forms' ); ?></strong></span>
9 </p>
10
11 <h1 class="page-title"><?php _e( 'Settings', 'html-forms' ); ?></h1>
12
13 <form method="post" action="<?php echo admin_url( 'options.php' ); ?>">
14 <?php settings_fields( 'hf_settings' ); ?>
15
16 <table class="form-table">
17 <tr valign="top">
18 <th scope="row"><?php _e( 'Load stylesheet?', 'html-forms' ); ?></th>
19 <td>
20 <label><input type="radio" name="hf_settings[load_stylesheet]" value="1" <?php checked( $settings['load_stylesheet'], 1 ); ?>> <?php _e( 'Yes' ); ?></label> &nbsp;
21 <label><input type="radio" name="hf_settings[load_stylesheet]" value="0" <?php checked( $settings['load_stylesheet'], 0 ); ?>> <?php _e( 'No' ); ?></label>
22
23 <p class="help"><?php _e( 'Select "yes" to apply some basic form styles to all HTML Forms.', 'html-forms' ); ?></p>
24 </td>
25 </tr>
26 </table>
27 <?php submit_button(); ?>
28 </form>
29
30 <?php require __DIR__ . '/admin-footer.php'; ?>
31 </div>
32