]> git.datanom.net - qtadmin.git/commitdiff
fix indentation
authorMichael Rasmussen <mir@datanom.net>
Sun, 31 May 2015 13:22:15 +0000 (15:22 +0200)
committerMichael Rasmussen <mir@datanom.net>
Sun, 31 May 2015 13:22:15 +0000 (15:22 +0200)
lib/utils.inc.php

index 47042b781725ca81d3affbed5a63c0999b4b5c0f..e9e8518c4f23284ce8e87dd564ff411c35c8b849 100644 (file)
@@ -191,42 +191,43 @@ class Utils {
                return $this->header;
        }
 
-        public function getFooter() {
-                return $this->footer;
-        }
+       public function getFooter() {
+               return $this->footer;
+       }
 
-        public function getHeading() {
-                return $this->heading;
-        }
+       public function getHeading() {
+               return $this->heading;
+       }
+
+       public function setHeading($heading) {
+               global $CFG;
 
-        public function setHeading($heading) {
-                       global $CFG;
+               $timeout = $CFG->session_timeout * 60 * 1000;
+               $this->heading = str_replace('__TITLE__', $heading, $this->heading);
+               $this->header = str_replace('__TITLE__', $heading, $this->header);
+               $this->header = str_replace('__ROOT__', $CFG->wwwroot, $this->header);
+               $this->header = str_replace('__TIMEOUT__', $timeout, $this->header);
+       }
 
-                       $timeout = $CFG->session_timeout * 60 * 1000;
-                       $this->heading = str_replace('__TITLE__', $heading, $this->heading);
-                       $this->header = str_replace('__TITLE__', $heading, $this->header);
-                       $this->header = str_replace('__ROOT__', $CFG->wwwroot, $this->header);
-                       $this->header = str_replace('__TIMEOUT__', $timeout, $this->header);
-               }
+       public function convertContent($code) {
+               $table = array(
+                       'V' => 'Virus',
+                       'B' => 'Banned',
+                       'U' => 'Unchecked',
+                       'S' => 'Spam',
+                       'Y' => 'Spammy',
+                       'M' => 'Bad Mime',
+                       'H' => 'Bad Header',
+                       'O' => 'Over sized',
+                       'T' => 'MTA err',
+                       'C' => 'Clean'
+               );
+
+               $string = $table[$code];
+               if (empty($string))
+                       $string = 'Unknown';
+
+               return $string;
+       }
 
-               public function convertContent($code) {
-                       $table = array(
-                               'V' => 'Virus',
-                               'B' => 'Banned',
-                               'U' => 'Unchecked',
-                               'S' => 'Spam',
-                               'Y' => 'Spammy',
-                               'M' => 'Bad Mime',
-                               'H' => 'Bad Header',
-                               'O' => 'Over sized',
-                               'T' => 'MTA err',
-                               'C' => 'Clean'
-                       );
-
-                       $string = $table[$code];
-                       if (empty($string))
-                               $string = 'Unknown';
-
-                       return $string;
-               }
 }
This page took 0.034594 seconds and 5 git commands to generate.