mirror of
https://github.com/lubuntu-team/lubuntu.me.git
synced 2025-02-23 08:11:08 +00:00
15 lines
304 B
PHP
15 lines
304 B
PHP
<?php
|
|
|
|
/**
|
|
* Prevent Direct Access
|
|
*/
|
|
defined( 'ABSPATH' ) or die( "Restricted access!" );
|
|
|
|
/**
|
|
* Delete options on uninstall
|
|
*/
|
|
function spacexchimp_p005_uninstall() {
|
|
delete_option( SPACEXCHIMP_P005_SETTINGS . '_settings' );
|
|
}
|
|
register_uninstall_hook( __FILE__, 'spacexchimp_p005_uninstall' );
|