PluginProbe
Essential Form – The lightest plugin for contact forms, ultra lightweight and no spam / 0.0.6
Essential Form – The lightest plugin for contact forms, ultra lightweight and no spam v0.0.6
trunk 0.0.1 0.0.2 0.0.3 0.0.4 0.0.5 0.0.6 0.0.6.RC-1 0.0.7 0.0.8 0.0.9 1.0.0 1.0.1 1.0.2
essential-form / plugin-activation.php

plugin-activation.php in Essential Form – The lightest plugin for contact forms, ultra lightweight and no spam 0.0.6, at plugin-activation.php

14 lines 347 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php defined( 'ABSPATH' ) || exit;
2
3 $opts = get_site_option( 'essential_form' );
4 if( !$opts ){
5 $opts = array();
6 }
7 if( !isset( $opts['activation_keys'] ) ){
8 $keys = array();
9 for( $n = 0;$n < 21;++$n ){
10 $keys[] = uniqid();
11 }
12 $opts['activation_keys'] = $keys;
13 essential_form_update_option( 'essential_form',$opts );
14 }