<?php
/*
Plugin Name: Test Uninstall Hook
Plugin URI: http://wordpress.org/#
Description: A plugin with an uninstall hook (that will prevent it from being uninstalled).
Author: Dylan Kuhn
Version: 1.0
Author URI: http://www.cyberhobo.net/
*/

function test_plugin_uninstall() {
	die( "NO! Don't do it!" );
}

// Now we set that function up to execute when the admin_footer action is called
register_uninstall_hook( __FILE__, 'test_plugin_uninstall');

?>
