function carrier_load in SMS Framework 7
Same name and namespace in other branches
- 6.2 sms.module \carrier_load()
Loads a single carrier.
Parameters
string $domain: The domain for which the carrier is to be loaded.
Return value
array An array containing the carrier info.
See also
1 call to carrier_load()
- carrier_save in ./
sms.module - Saves a carrier to database.
File
- ./
sms.module, line 564 - The core of the SMS Framework. Provides gateway management and API for sending and receiving SMS messages.
Code
function carrier_load($domain) {
return sms_carriers($domain);
}