]> git.mxchange.org Git - mailer.git/blobdiff - inc/filters.php
Code style changed, ext-user continued:
[mailer.git] / inc / filters.php
index d69f999d2665876f910ffce9d93b02fa7b4c264a..1a8a984f0c74f10a2fc4913ed7bc938878d122ef 100644 (file)
@@ -62,7 +62,7 @@ function FILTER_FLUSH_FILTERS () {
                } // END - if
 
                // Abort silently here
-               return false;
+               return FALSE;
        } // END - if
 
        // Nothing is added/remove by default
@@ -193,7 +193,7 @@ function FILTER_SOLVE_TASK ($filterData) {
                adminSolveTask($filterData['task_id']);
        } else {
                // Not detectable!
-               reportBug(__FUNCTION__, __LINE__, sprintf("Cannot resolve task. data[%s]=<pre>%s</pre>", gettype($filterData), print_r($filterData, true)));
+               reportBug(__FUNCTION__, __LINE__, sprintf("Cannot resolve task. data[%s]=<pre>%s</pre>", gettype($filterData), print_r($filterData, TRUE)));
        }
 
        // Return the data
@@ -248,11 +248,11 @@ function FILTER_RUN_SQLS ($filterData) {
        $count = 0;
 
        // Debug message
-       //* DEBUG: */ die('getSqls()=<pre>'.print_r(getSqls(), true).'</pre>ext_update_depends=<pre>'.print_r($GLOBALS['ext_update_depends'], true).'</pre>');
+       //* DEBUG: */ die('getSqls()=<pre>'.print_r(getSqls(), TRUE).'</pre>ext_update_depends=<pre>'.print_r($GLOBALS['ext_update_depends'], TRUE).'</pre>');
        //* DEBUG: */ logDebugMessage(__FUNCTION__, __LINE__, '- Entered!');
 
        // Is the array there?
-       if ((isSqlsValid()) && ((!isset($filterData['dry_run'])) || ($filterData['dry_run'] == false))) {
+       if ((isSqlsValid()) && ((!isset($filterData['dry_run'])) || ($filterData['dry_run'] == FALSE))) {
                // Run SQL commands
                //* DEBUG: */ logDebugMessage(__FUNCTION__, __LINE__, '- Found ' . countSqls() . ' queries to run.');
                foreach (getSqls() as $mode => $sqls) {
@@ -266,7 +266,7 @@ function FILTER_RUN_SQLS ($filterData) {
 
                                // Is 'enable_codes' not set? Then set it to true
                                if (!isset($filterData['enable_codes'])) {
-                                       $filterData['enable_codes'] = true;
+                                       $filterData['enable_codes'] = TRUE;
                                } // END - if
 
                                // Is there still a query left?
@@ -311,7 +311,7 @@ function FILTER_UPDATE_LOGIN_DATA () {
 
        // Recheck if logged in
        if ((!isMember()) || ((isAdmin()) && (!isDebugModeEnabled()))) {
-               return false;
+               return FALSE;
        } // END - if
 
        // Secure user id
@@ -430,7 +430,7 @@ function FILTER_DETERMINE_USERNAME () {
 }
 
 // Filter for compiling config entries
-function FILTER_COMPILE_CONFIG ($code, $compiled = false) {
+function FILTER_COMPILE_CONFIG ($code, $compiled = FALSE) {
        // Save the uncompiled code
        $uncompiled = $code;
 
@@ -472,7 +472,7 @@ function FILTER_COMPILE_CONFIG ($code, $compiled = false) {
        } // END - if
 
        // Should we compile it?
-       if ($compiled === true) {
+       if ($compiled === TRUE) {
                // Run the code
                $eval = "\$GLOBALS['compiled_config'][\$uncompiled] = \"" . $GLOBALS['compiled_config'][$uncompiled] . '";';
                //* DEBUG: */ debugOutput(__FUNCTION__.'['.__LINE__.']:<pre>' . encodeEntities($eval) . '</pre>');
@@ -488,7 +488,7 @@ function FILTER_COMPILE_EXPRESSION_CODE ($filterData) {
        // Compile {%cmd,callback,extraFunction=some_value%} to get expression code snippets
        // See switch() command below for supported commands
        preg_match_all('/\{%(([a-zA-Z0-9-_,]+)(=([^\}]+)){0,1})*%\}/', $filterData, $matches);
-       //* DEBUG: */ debugOutput(__FUNCTION__.'['.__LINE__.']:<pre>'.print_r($matches, true).'</pre>');
+       //* DEBUG: */ debugOutput(__FUNCTION__.'['.__LINE__.']:<pre>'.print_r($matches, TRUE).'</pre>');
 
        // Default is from outputHtml()
        $outputMode = getScriptOutputMode();
@@ -832,7 +832,7 @@ function FILTER_LOAD_RUNTIME_INCLUDES () {
 // Filter for checking admin ACL
 function FILTER_CHECK_ADMIN_ACL () {
        // Extension not installed so it's always allowed to access everywhere!
-       $ret = true;
+       $ret = TRUE;
 
        // Ok, Cookie-Update done
        if ((isExtensionInstalledAndNewer('admins', '0.3.0')) && (isExtensionActive('admins'))) {
@@ -880,7 +880,7 @@ function FILTER_HANDLE_FATAL_ERRORS () {
        // Is there errors to handle and right output mode?
        if ((!ifFatalErrorsDetected()) || (!isHtmlOutputMode())) {
                // Abort executing here
-               return false;
+               return FALSE;
        } // END - if
 
        // Set content type
@@ -904,11 +904,11 @@ function FILTER_HANDLE_FATAL_ERRORS () {
                        );
 
                        // Load row template
-                       $OUT .= loadTemplate('install_fatal_row', true, $content);
+                       $OUT .= loadTemplate('install_fatal_row', TRUE, $content);
                }
 
                // Load main template
-               $content = loadTemplate('install_fatal_table', true, $OUT);
+               $content = loadTemplate('install_fatal_table', TRUE, $OUT);
        } elseif (isInstalled()) {
                // Display all runtime fatal errors
                $OUT = '';
@@ -920,11 +920,11 @@ function FILTER_HANDLE_FATAL_ERRORS () {
                        );
 
                        // Load row template
-                       $OUT .= loadTemplate('runtime_fatal_row', true, $content);
+                       $OUT .= loadTemplate('runtime_fatal_row', TRUE, $content);
                }
 
                // Load main template
-               $content = loadTemplate('runtime_fatal_table', true, $OUT);
+               $content = loadTemplate('runtime_fatal_table', TRUE, $OUT);
        }
 
        // Message to regular users (non-admin)
@@ -945,7 +945,7 @@ function FILTER_HANDLE_FATAL_ERRORS () {
        loadIncludeOnce('inc/header.php');
 
        // Load main template
-       loadTemplate('fatal_errors', false, $content);
+       loadTemplate('fatal_errors', FALSE, $content);
 
        // Delete all to prevent double-display
        initFatalMessages();
@@ -964,10 +964,10 @@ function FILTER_DISPLAY_COPYRIGHT () {
                // Backlink enabled?
                if (((isConfigEntrySet('ENABLE_BACKLINK')) && (getConfig('ENABLE_BACKLINK') == 'Y')) || (isInstalling())) {
                        // Copyright with backlink, thanks! :-)
-                       $GLOBALS['__page_footer'] .= loadTemplate('copyright_backlink', true);
+                       $GLOBALS['__page_footer'] .= loadTemplate('copyright_backlink', TRUE);
                } else {
                        // No backlink in Copyright note
-                       $GLOBALS['__page_footer'] .= loadTemplate('copyright', true);
+                       $GLOBALS['__page_footer'] .= loadTemplate('copyright', TRUE);
                }
        } // END - if
 }
@@ -1064,12 +1064,12 @@ function FILTER_DO_LOGIN_ADMIN ($filterData) {
 // Filter for loading page header, this should be ran first!
 function FILTER_LOAD_PAGE_HEADER () {
        // Output page header code
-       $GLOBALS['__page_header'] = loadTemplate('page_header', true);
+       $GLOBALS['__page_header'] = loadTemplate('page_header', TRUE);
 
        // Include meta data in 'guest' module
        if ((isModuleSet()) && (getModule() == 'index')) {
                // Load meta data template
-               $GLOBALS['__page_header'] .= loadTemplate('metadata', true);
+               $GLOBALS['__page_header'] .= loadTemplate('metadata', TRUE);
 
                // Add meta description to header
                if ((isInstalled()) && (isAdminRegistered()) && (SQL_IS_LINK_UP())) {
@@ -1118,7 +1118,7 @@ function FILTER_SET_CURRENT_DATE () {
 // Filter for marking extension as installed
 function FILTER_EXTENSION_MARK_INSTALLED ($filterData) {
        // Mark it as installed
-       $GLOBALS['ext_is_installed'][$filterData['ext_name']] = true;
+       $GLOBALS['ext_is_installed'][$filterData['ext_name']] = TRUE;
 }
 
 // Filter for generating mails links for 'pool' mails
@@ -1126,7 +1126,7 @@ function FILTER_GENERATE_POOL_MAIL_LINKS ($filterData) {
        // Is type 'mid'?
        if ($filterData['type'] == 'mid') {
                // Load template
-               $filterData['__output'] .= loadTemplate('admin_links_' . strtolower($filterData['mail_status']) . '_pool_mail', true, $filterData);
+               $filterData['__output'] .= loadTemplate('admin_links_' . strtolower($filterData['mail_status']) . '_pool_mail', TRUE, $filterData);
        } // END - if
 
        // Return data
@@ -1138,7 +1138,7 @@ function FILTER_ACTIVATE_EXCHANGE () {
        // Is the extension 'user' there?
        if ((!isExtensionActive('user')) || (getActivateXchange() == '0')) {
                // Silently abort here
-               return false;
+               return FALSE;
        } // END - if
 
        // Check total amount of users