insights()->init(); } function mep_event_activation_redirect($plugin) { if ($plugin == plugin_basename(__FILE__)) { exit(wp_redirect(admin_url('edit.php?post_type=mep_events&page=mep_event_welcome_page'))); } } add_action('activated_plugin', 'mep_event_activation_redirect'); require_once(dirname(__FILE__) . "/inc/mep_file_include.php"); // Get Plugin Data if(!function_exists('mep_get_plugin_data')) { function mep_get_plugin_data($data) { $get_mep_plugin_data = get_plugin_data( __FILE__ ); $mep_data = $get_mep_plugin_data[$data]; return $mep_data; } } // Added Settings link to plugin action links add_filter( 'plugin_action_links', 'mep_plugin_action_link', 10, 2 ); function mep_plugin_action_link( $links_array, $plugin_file_name ){ if( strpos( $plugin_file_name, basename(__FILE__) ) ) { array_unshift( $links_array, ''.__('Settings','mage-eventpress').''); } return $links_array; } // Added links to plugin row meta add_filter( 'plugin_row_meta', 'mep_plugin_row_meta', 10, 2 ); function mep_plugin_row_meta( $links_array, $plugin_file_name ) { if( strpos( $plugin_file_name, basename(__FILE__) ) ) { if(!is_plugin_active('woocommerce-event-manager-pdf-ticket/tickets.php') || !is_plugin_active('woocommerce-event-manager-addon-form-builder/addon-builder.php')){ $wbbm_links = array( 'docs' => ''.__('Docs','mage-eventpress').'', 'support' => ''.__('Support','mage-eventpress').'', 'get_pro' => ''.__('Upgrade to PRO Version','mage-eventpress').'' ); }else{ $wbbm_links = array( 'docs' => ''.__('Docs','mage-eventpress').'', 'support' => ''.__('Support','mage-eventpress').'' ); } $links_array = array_merge( $links_array, $wbbm_links ); } return $links_array; } } else { require_once(dirname(__FILE__) . "/lib/classes/class-mep-required-plugins.php"); }