]> git.mxchange.org Git - mailer.git/blobdiff - inc/libs/uberwach_functions.php
SQL fix #3
[mailer.git] / inc / libs / uberwach_functions.php
index 8539e5c8b97dde51b42819a95d87bbe6ef9b5b26..bb70a1e103d3ce9bffd501a6f0bb721e6568ca00 100644 (file)
 // 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 ((!isGetRequestElementSet('frame')) && (isExtensionActive('uberwach')) && (getModule() != 'admin') && ($GLOBALS['header_sent'] == 2)) {
+               // Then display it here
+               loadUberwachSnippet();
+       } // END - if
 }
 
-//
+// [EOF]
 ?>