PluginProbe
Icegram Engage – Popups, Optins, CTAs & Lead Generation / 1.8.6
Icegram Engage – Popups, Optins, CTAs & Lead Generation v1.8.6
3.1.5 3.1.6 3.1.7 3.1.8 3.1.9 3.1.34 3.1.35 3.1.36 3.1.37 3.1.38 3.1.39 3.1.4 3.1.40 3.1.41 3.1.42 3.1.43 trunk 1.1 1.1.1 1.1.2 1.10 1.10.1 1.10.10 1.10.11 1.10.12 All 180 releases
icegram / settings.php

settings.php in Icegram Engage – Popups, Optins, CTAs & Lead Generation 1.8.6, at settings.php

30 lines 1.0 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2 if ( !defined( 'ABSPATH' ) ) exit;
3
4 if( isset( $_POST['submit'] ) ) {
5 if( isset( $_POST['icegram_share_love'] ) ) {
6 update_option( 'icegram_share_love', $_POST['icegram_share_love'] );
7 } else {
8 update_option( 'icegram_share_love', 'no' );
9 }
10 }
11
12 ?>
13 <div class="wrap">
14 <h2><?php _e( "Icegram Settings", "icegram" ) ?></h2>
15 <form name="icegram_settings" method="POST" action="<?php echo admin_url(); ?>edit.php?post_type=ig_campaign&page=icegram-settings">
16 <table class="form-table">
17 <tr>
18 <th scope="row"><?php _e( 'Share Icegram', 'icegram' ) ?></th>
19 <td>
20 <label for="icegram_share_love">
21 <input type="checkbox" name="icegram_share_love" id="icegram_share_love"/ value="yes" <?php checked('yes', get_option('icegram_share_love')); ?> />
22 <?php _e( 'Show "Powered by" link', 'icegram' ); ?>
23 </label>
24 </td>
25 </tr>
26 </table>
27 <?php submit_button(); ?>
28 </form>
29 </div>
30 <?php do_action( 'icegram_settings_after' ); ?>