I'm looking at this code and trying to figure out if the first line is even necessary.
What do you think?
PHP:
defined( 'ABSPATH' ) OR exit;
// If uninstall is not called from WordPress then exit
if( !defined( 'ABSPATH') && !defined( 'WP_UNINSTALL_PLUGIN' ) )
exit();
What do you think?