]> git.mxchange.org Git - mailer.git/blobdiff - inc/libs/uberwach_functions.php
Parser error fixed...
[mailer.git] / inc / libs / uberwach_functions.php
index 8539e5c8b97dde51b42819a95d87bbe6ef9b5b26..7d6b3420ecd4a44c3e9714328abf62eac3775804 100644 (file)
@@ -1,7 +1,7 @@
 <?php
 /************************************************************************
- * MXChange v0.2.1                                    Start: 09/31/2009 *
- * ===============                              Last change: 09/31/2009 *
+ * Mailer v0.2.1-FINAL                                Start: 09/31/2009 *
+ * ===================                          Last change: 09/31/2009 *
  *                                                                      *
  * -------------------------------------------------------------------- *
  * File              : uberwach_functions.php                           *
 // Some security stuff...
 if (!defined('__SECURITY')) {
        die();
-}
+} // END - if
 
 // Loads the snippet for the uberwach action
 function loadUberwachSnippet () {
+       // Detect IP address
+       $content['REMOTE_ADDR'] = detectRemoteAddr();
+
        // Simply load the template here
-       loadTemplate('uberwach_snippet');
+       loadTemplate('uberwach_snippet', false, $content);
+}
+
+// Filter for displaying uberwach snippet
+function FILTER_DISPLAY_UBERWACH_SNIPPET () {
+       // Shall we include the uberwach snippet?
+       if ((!isGetRequestParameterSet('frame')) && (isExtensionActive('uberwach')) && (getModule() != 'admin') && ($GLOBALS['header_sent'] == 2)) {
+               // Then display it here
+               loadUberwachSnippet();
+       } // END - if
 }
 
-//
+// [EOF]
 ?>