01.
$options
=
array
(
02.
03.
array
(
"name"
=>
"Welcome Message"
,
04.
"type"
=>
"title"
),
05.
06.
array
(
"type"
=>
"open"
),
07.
08.
array
(
"name"
=>
"Title"
,
09.
"desc"
=>
"Enter a title to display for your welcome message."
,
10.
"id"
=>
$shortname
.
"_welcome_title"
,
11.
"std"
=>
""
,
12.
"type"
=>
"text"
),
13.
14.
array
(
"name"
=>
"Message"
,
15.
"desc"
=>
"Text to display as welcome message."
,
16.
"id"
=>
$shortname
.
"_welcome_message"
,
17.
"type"
=>
"textarea"
),
18.
19.
array
(
"name"
=>
"Disable Welcome Message?"
,
20.
"desc"
=>
"Check this box if you would like to DISABLE the welcome message."
,
21.
"id"
=>
$shortname
.
"_welcome_disable"
,
22.
"type"
=>
"checkbox"
,
23.
"std"
=>
"false"
),
24.
25.
array
(
"type"
=>
"close"
)
26.
27.
);