summaryrefslogtreecommitdiff
path: root/FS/FS
diff options
context:
space:
mode:
authorivan <ivan>2004-11-27 19:09:47 +0000
committerivan <ivan>2004-11-27 19:09:47 +0000
commit52a2dbebe522c0866e18f09a169d39a0cbd4d7b8 (patch)
treeffa874ac8a645bd6a6ef72ddac6e825c50709cbe /FS/FS
parent96db7f5df100ab0ebdcb23630ada27b4702328b9 (diff)
ticket system integration framework and skin RT
Diffstat (limited to 'FS/FS')
-rw-r--r--FS/FS/Conf.pm8
-rw-r--r--FS/FS/TicketSystem/RT_External.pm6
-rw-r--r--FS/FS/TicketSystem/RT_Internal.pm8
-rw-r--r--FS/FS/TicketSystem/RT_Libs.pm8
4 files changed, 30 insertions, 0 deletions
diff --git a/FS/FS/Conf.pm b/FS/FS/Conf.pm
index f15b485ed..ccad607ca 100644
--- a/FS/FS/Conf.pm
+++ b/FS/FS/Conf.pm
@@ -1320,6 +1320,14 @@ httemplate/docs/config.html
'select_enum' => [ 'generic', 'artera_turbo', ],
},
+ {
+ 'key' => 'ticket_system',
+ 'section' => '',
+ 'description' => 'Ticketing system integraiton. <b>RT_Internal</b> uses the built-in RT ticketing system (use <code>make create-rt</code> to create the necessary tables). <b>RT_Libs</b> uses the built-in RT libraries to access an RT installation in a separate database (local or remote). <b>RT_External</b> uses RT\'s XML interface and RTx::Atom to access an RT installation in a separate database (local or remote).',
+ 'type' => 'select',
+ 'select_enum' => [ '', qw(RT_Internal RT_Libs RT_External) ],
+ },
+
);
1;
diff --git a/FS/FS/TicketSystem/RT_External.pm b/FS/FS/TicketSystem/RT_External.pm
new file mode 100644
index 000000000..b74740ca7
--- /dev/null
+++ b/FS/FS/TicketSystem/RT_External.pm
@@ -0,0 +1,6 @@
+package FS::TicketSystem::RT_External;
+
+use strict;
+
+1;
+
diff --git a/FS/FS/TicketSystem/RT_Internal.pm b/FS/FS/TicketSystem/RT_Internal.pm
new file mode 100644
index 000000000..a4ecd6a66
--- /dev/null
+++ b/FS/FS/TicketSystem/RT_Internal.pm
@@ -0,0 +1,8 @@
+package FS::TicketSystem::RT_Internal;
+
+use strict;
+
+@ISA = qw( FS::TicketSystem::RT_Libs );
+
+1;
+
diff --git a/FS/FS/TicketSystem/RT_Libs.pm b/FS/FS/TicketSystem/RT_Libs.pm
new file mode 100644
index 000000000..b71763237
--- /dev/null
+++ b/FS/FS/TicketSystem/RT_Libs.pm
@@ -0,0 +1,8 @@
+package FS::TicketSystem::RT_Libs.pm
+
+use strict;
+
+@ISA = qw( FS::TicketSystem::RT_External );
+
+1;
+