SetGlobalVar()
SetGlobalVar(Variable
=Wert
)
SetGlobalVar()
ist ab Asterisk 1.6 nicht mehr
vorhanden und sollte auch in 1.4 nicht mehr genutzt werden. Eine globale
Variable setzt man ab da mittels Set()
(Abschnitt C.149, „Set()
“) in Verbindung mit
GLOBAL()
(Abschnitt D.38, „GLOBAL()
“):Set(GLOBAL(Variable
)=Wert
)
Set()
mit der
Option g
und ab Asterisk 1.4 GLOBAL()
.————————| 1.2 |————————| 1.4 | | |
-= Info about application 'SetGlobalVar' =-
[Synopsis]
Set a global variable to a given value
[Description]
SetGlobalVar(variable=value): This application sets a given global variable to
the specified value.
This application is deprecated in favor of Set(GLOBAL(var)=value)
--- in Asterisk 1.2
+++ in Asterisk 1.4
@@ -6,3 +6,6 @@
[Description]
SetGlobalVar(variable=value): This application sets a given global variable to
the specified value.
+
+
+ This application is deprecated in favor of Set(GLOBAL(var)=value)