';// return; } echo '
'; //TODO - move most of the following includes to functions of this class instead. //Switch case for the various different tabs handled by the core plugin. switch ($tab) { case 'payment_buttons': include_once(SIMPLE_WP_MEMBERSHIP_PATH . '/views/payments/admin_payment_buttons.php'); break; case 'create_new_button': include_once(SIMPLE_WP_MEMBERSHIP_PATH . '/views/payments/admin_create_payment_buttons.php'); break; case 'edit_button': include_once(SIMPLE_WP_MEMBERSHIP_PATH . '/views/payments/admin_edit_payment_buttons.php'); break; case 'all_txns': include_once(SIMPLE_WP_MEMBERSHIP_PATH . '/views/payments/admin_all_payment_transactions.php'); break; case 'add_new_txn': include_once(SIMPLE_WP_MEMBERSHIP_PATH . '/views/payments/admin_add_edit_transaction_manually.php'); swpm_handle_add_new_txn_manually(); break; default: include_once(SIMPLE_WP_MEMBERSHIP_PATH . '/views/payments/admin_all_payment_transactions.php'); break; } echo '
'; // echo '
'; // } }