コード例 #1
0
ファイル: example.php プロジェクト: vladylen/magento-test
/**
 * Login to manager API
 */
try {
    $ast->login('user', 'pass');
} catch (PEAR_Exception $e) {
    echo $e;
}
/**
 * Monitoring
 * Begin monitoring channel to filename "test.gsm"
 * If it fails then echo Asterisk error
 */
$chan = 'SIP/868';
try {
    $ast->startMonitor($chan, 'test', 'gsm', 1);
} catch (PEAR_Exception $e) {
    echo $e;
}
/**
 * Queues
 * List queues then add and remove a handset from a queue
 */
// Print all the queues on the server
try {
    echo $ast->getQueues();
} catch (PEAR_Exception $e) {
    echo $e;
}
// Add the SIP handset 234 to a the applicants queue
try {