Created
September 24, 2014 18:50
-
-
Save mkorostoff/aca3865e48377a1f1115 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
/** | |
* Menu callback for /settings/billing-information/payment-history | |
*/ | |
function _radius_settings_payment_history_menu_callback() { | |
$payment_history = get_payment_history(); | |
$page = array('content' => theme('table', $payment_history); | |
return $page; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment