modified readme.txt
[danixland-contact-form.git] / uninstall.php
1 <?php
2 //if uninstall not called from WordPress exit
3 if ( ! defined( 'WP_UNINSTALL_PLUGIN' ) ) {
4 exit();
5 }
6
7 $options = 'dnxcf_options';
8
9 delete_option( $options );
10
11