Sorry, ABCApp Creator requires PHP version 5.0 or greater.

"; } function app_creator_activation() { // Add the rewrite rule on activation global $wp_rewrite; add_filter('rewrite_rules_array', 'app_creator_rewrites'); $wp_rewrite->flush_rules(); } function app_creator_deactivation() { // Remove the rewrite rule on deactivation global $wp_rewrite; $wp_rewrite->flush_rules(); } add_action('init', 'app_creator_init'); register_activation_hook(APP_CREATOR_BASE_PATH."/abcapp-creator.php", 'app_creator_activation'); register_deactivation_hook(APP_CREATOR_BASE_PATH."/abcapp-creator.php", 'app_creator_deactivation'); ?>