initialize(); do_action( 'wptouch_pro_loaded' ); } } // Global WPtouch Pro activation hook function wptouch_handle_activation() { global $wptouch_pro; if ( !$wptouch_pro ) { wptouch_create_three_object(); } $wptouch_pro->handle_activation(); } // Global WPtouch Pro deactivation hook function wptouch_handle_deactivation() { global $wptouch_pro; if ( !$wptouch_pro ) { wptouch_create_three_object(); } $wptouch_pro->handle_deactivation(); } // Activation hook for some basic initialization register_activation_hook( __FILE__, 'wptouch_handle_activation' ); register_deactivation_hook( __FILE__, 'wptouch_handle_deactivation' ); // Main WPtouch Pro activation hook add_action( 'plugins_loaded', 'wptouch_create_three_object' );