Page 409 - Asterisk™: The Future of Telephony
P. 409
See Also
Playback(), Background(), Dictate(),
DateTime() Says the date and/or time in the user-specified format
DateTime([unixtime[,timezone[,format]]])
If the unixtime parameter is specified, this application says that date and time. Other-
wise, it says the current date and time. If a timezone is specified, the date and time is
calculated according to that time zone. Otherwise, the time zone setting of the Asterisk
server is used. If the format parameter is specified, the date and time will be said ac-
cording to that format. (See the sample voicemail.conf file for more information on the
date and time format.)
; say the current date and time in several time zones
exten => 123,1,DateTime(,America/New_York)
exten => 123,2,DateTime(,America/Chicago)
exten => 123,3,DateTime(,America/Denver)
exten => 123,4,DateTime(,America/Los_Angeles)
DBdel() Deletes a key from the AstDB
DBdel(family/key)
Deletes the key specified by key from the key family named family in the AstDB.
exten => 123,1,DBput(test/name=John) ; add name to AstDB
exten => 123,2,DBget(NAME=test/name) ; retrieve name from AstDB
exten => 123,3,DBdel(test/name) ; delete from AstDB
This application is deprecated and the functionality has been replaced
with the DB_DELETE() function.
See Also
DB_DELETE(), DBdeltree(), DB
DBdeltree() Deletes a family or key tree from the AstDB
DBdeltree(family[/keytree])
Deletes the specified family or keytree from the AstDB.
; create a couple of entries in the AstDB
exten => 123,1,DBput(test/blue)
exten => 123,2,DBput(test/green)
DateTime() | 381