[EDIT] move from acl to system
Was going to do this the first time.. dunno why i put it in acl :p
This commit is contained in:
parent
45127409ed
commit
b1af60709e
@ -250,20 +250,6 @@ $aSettings['acl'][] = array(
|
|||||||
'name' => 'acl_contactform', 'value' => $setting->getValue('acl_contactform'),
|
'name' => 'acl_contactform', 'value' => $setting->getValue('acl_contactform'),
|
||||||
'tooltip' => 'Make the contactform private (users only) or public.'
|
'tooltip' => 'Make the contactform private (users only) or public.'
|
||||||
);
|
);
|
||||||
$aSettings['acl'][] = array(
|
|
||||||
'display' => 'Live Chat Page', 'type' => 'select',
|
|
||||||
'options' => array( 0 => 'Private', 1 => 'Public', 2 => 'Disabled' ),
|
|
||||||
'default' => 2,
|
|
||||||
'name' => 'acl_chat_page', 'value' => $setting->getValue('acl_chat_page'),
|
|
||||||
'tooltip' => 'Make the chat page private (users only) or public.'
|
|
||||||
);
|
|
||||||
$aSettings['acl'][] = array(
|
|
||||||
'display' => 'IRC Chat Channel', 'type' => 'text',
|
|
||||||
'size' => 25,
|
|
||||||
'default' => '#',
|
|
||||||
'name' => 'acl_irc_chat', 'value' => $setting->getValue('acl_irc_chat'),
|
|
||||||
'tooltip' => 'Your IRC support channel name.'
|
|
||||||
);
|
|
||||||
$aSettings['system'][] = array(
|
$aSettings['system'][] = array(
|
||||||
'display' => 'E-mail address for system error notifications', 'type' => 'text',
|
'display' => 'E-mail address for system error notifications', 'type' => 'text',
|
||||||
'size' => 25,
|
'size' => 25,
|
||||||
@ -355,6 +341,20 @@ $aSettings['system'][] = array(
|
|||||||
'name' => 'disable_transactionsummary', 'value' => $setting->getValue('disable_transactionsummary'),
|
'name' => 'disable_transactionsummary', 'value' => $setting->getValue('disable_transactionsummary'),
|
||||||
'tooltip' => 'Disable transaction summaries. Helpful with large transaction tables.'
|
'tooltip' => 'Disable transaction summaries. Helpful with large transaction tables.'
|
||||||
);
|
);
|
||||||
|
$aSettings['system'][] = array(
|
||||||
|
'display' => 'Live Chat Page', 'type' => 'select',
|
||||||
|
'options' => array( 0 => 'Private', 1 => 'Public', 2 => 'Disabled' ),
|
||||||
|
'default' => 2,
|
||||||
|
'name' => 'system_chat_page', 'value' => $setting->getValue('system_chat_page'),
|
||||||
|
'tooltip' => 'Make the chat page private (users only) or public.'
|
||||||
|
);
|
||||||
|
$aSettings['system'][] = array(
|
||||||
|
'display' => 'IRC Chat Channel', 'type' => 'text',
|
||||||
|
'size' => 25,
|
||||||
|
'default' => '#',
|
||||||
|
'name' => 'system_irc_chat', 'value' => $setting->getValue('system_irc_chat'),
|
||||||
|
'tooltip' => 'Your IRC support channel name.'
|
||||||
|
);
|
||||||
$aSettings['recaptcha'][] = array(
|
$aSettings['recaptcha'][] = array(
|
||||||
'display' => 'Enable re-Captcha', 'type' => 'select',
|
'display' => 'Enable re-Captcha', 'type' => 'select',
|
||||||
'options' => array( 0 => 'No', 1 => 'Yes' ),
|
'options' => array( 0 => 'No', 1 => 'Yes' ),
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user