From: hickert Date: Thu, 3 Nov 2005 13:53:39 +0000 (+0000) Subject: Added empty mailqueue addon X-Git-Url: https://git.tokkee.org/?a=commitdiff_plain;h=1c732d489a74f50c0b8cbfc73b0e576a6bf59c11;p=gosa.git Added empty mailqueue addon git-svn-id: https://oss.gonicus.de/repositories/gosa/trunk@1823 594d385d-05f5-0310-b6e9-bd551577e9d8 --- diff --git a/plugins/addons/mailqueue/class_mailqueue.inc b/plugins/addons/mailqueue/class_mailqueue.inc new file mode 100644 index 000000000..95e8819f4 --- /dev/null +++ b/plugins/addons/mailqueue/class_mailqueue.inc @@ -0,0 +1,30 @@ +config= $config; + + } + + function execute() + { + /* Call parent execute */ + plugin::execute(); + $smarty= get_smarty(); + return ($smarty->fetch (get_template_path('contents.tpl', TRUE))); + } + +} + +?> diff --git a/plugins/addons/mailqueue/contents.tpl b/plugins/addons/mailqueue/contents.tpl new file mode 100644 index 000000000..527f9116b --- /dev/null +++ b/plugins/addons/mailqueue/contents.tpl @@ -0,0 +1 @@ +Class MailQueue diff --git a/plugins/addons/mailqueue/main.inc b/plugins/addons/mailqueue/main.inc new file mode 100644 index 000000000..1069618a6 --- /dev/null +++ b/plugins/addons/mailqueue/main.inc @@ -0,0 +1,38 @@ +execute (); + $display.= "\n"; + + /* Store changes in session */ + $_SESSION['mailqueue']= $mailqueue; +} +?>