initial commit
[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 $options = 'dnxcf_options';
7
8 delete_option( $options );
9
10 ?>