Springt zu einer bestimmten Priorität, Extension und einem bestimmten Context.
Goto([[Context
,]Extension
,]Priorität
)
Goto(benannte_Priorität
)
Übergibt die Kontrolle des aktuellen Channels ohne Möglichkeit der Rückkehr an die spezifizierte Priorität und setzt optional Extension und Context des Ziels.
Optional können Sie die Anwendung dazu benutzen, zu der durch den
Parameter benannte_Priorität
angegebenen Priorität (also
Priorität mit Label) zu gelangen. Benannte Prioritäten funktionieren
ausschließlich in der aktuellen Extension.
Liefert immer 0 zurück, auch falls der gegebene Context, die geg. Extension oder Priorität nicht gültig sind.
exten => 123,1,Answer() exten => 123,2,Set(COUNT=1) exten => 123,3,SayNumber(${COUNT}) exten => 123,4,Set(COUNT=$[ ${COUNT} + 1 ]) exten => 123,5,Goto(3) ; das gleiche mit einer benannten Priorität: exten => 124,1,Answer() exten => 124,2,Set(COUNT=1) exten => 124,3(ansage),SayNumber(${COUNT}) exten => 124,4,Set(COUNT=$[ ${COUNT} + 1 ]) exten => 124,5,Goto(ansage)
Interner Hilfetext zu dieser Applikation in Asterisk 1.4: -= Info about application 'Goto' =- [Synopsis] Jump to a particular priority, extension, or context [Description] Goto([[context|]extension|]priority): This application will cause the calling channel to continue dialplan execution at the specified priority . If no specific extension, or extension and context, are specified, then this application will jump to the specified priority of the current extension . If the attempt to jump to another location in the dialplan is not succ essful, then the channel will continue at the next priority of the current exten sion. Differenz zum internen Hilfetext in Asterisk 1.2: - keine - |
Siehe auch. „GotoIf()
“, „GotoIfTime()
“, „Gosub()
“, „GosubIf()
“, „Macro()
“