You are here

function sms_txtlocal_balance in SMS Framework 6

Get account balance

Return value

Balance text

1 call to sms_txtlocal_balance()
sms_txtlocal_admin_form in modules/sms_txtlocal/sms_txtlocal.module
Configuration form for gateway module

File

modules/sms_txtlocal/sms_txtlocal.module, line 192
Txtlocal gateway module for Drupal SMS Framework. Outbound+Inbound

Code

function sms_txtlocal_balance() {
  $result = sms_txtlocal_command('getbalance');
  return $result['gateway_status_text'];
}