PABX da Simples IP
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

43 lines
896 B

phpAMI 1.0
dahdiDNDOff
Envia "ManagerAction_DAHDIDNDoff"
Apaga el DND en un canal DAHDI
link: https://wiki.asterisk.org/wiki/display/AST/ManagerAction_DAHDIDNDoff
access: public
Ver dahdiDNDOff (string $channel)
string $channel: canal DAHDI
-------------Interface AMI-------------
Action: DAHDIDNDoff
DAHDIChannel: 2
Response: Success
Message: DND Disabled
---------------------------------------
----------------Ejemplo----------------
include "phpAMI.php";
$ami=new phpAMI("admin","admin");
$login=$ami->login();
if($login["Response"]=="Success"){
print_r($ami->dahdiDNDOff("2"));
$ami->logoff();
}
---------------------------------------
----------Respuesta de phpAMI----------
Array
(
[Response] => Success
[Message] => DND Disabled
)
Si el Canal no existe responde:
Array
(
[Response] => Error
[Message] => No such channel
)
---------------------------------------