summaryrefslogtreecommitdiff
path: root/FS
diff options
context:
space:
mode:
authorivan <ivan>2002-10-08 04:46:40 +0000
committerivan <ivan>2002-10-08 04:46:40 +0000
commitb97ccb2b958567490841cfc93d2c4a401d98cdb0 (patch)
tree97fd3e10eece426ecbe247e861f012badda01f2a /FS
parent656b802d26a8eb0dfd6fd71dbcdebfab156041e9 (diff)
payby-default config option, with special "HIDE" option to disable billing
information in the web interface (closes: Bug#468)
Diffstat (limited to 'FS')
-rw-r--r--FS/FS/Conf.pm9
1 files changed, 9 insertions, 0 deletions
diff --git a/FS/FS/Conf.pm b/FS/FS/Conf.pm
index 788127a7f..1c4ad04a3 100644
--- a/FS/FS/Conf.pm
+++ b/FS/FS/Conf.pm
@@ -952,6 +952,15 @@ httemplate/docs/config.html
'select_enum' => [ 'text/plain', 'text/html' ],
},
+ {
+ 'key' => 'payby-default',
+ 'section' => 'UI',
+ 'description' => 'Default payment type. HIDE disables display of billing information and sets customers to BILL.',
+ 'type' => 'select',
+ 'select_enum' => [ '', 'CARD', 'BILL', 'COMP', 'HIDE' ],
+ },
+
+
);
1;