XoopsModules25x/xoopsinfo

View on GitHub
kernel/mimetypes.php

Summary

Maintainability
F
5 days
Test Coverage

File mimetypes.php has 620 lines of code (exceeds 250 allowed). Consider refactoring.
Open

<?php
// $Id: comment.php 506 2006-05-26 23:10:37Z skalpa $
//  ------------------------------------------------------------------------ //
//                XOOPS - PHP Content Management System                      //
//                    Copyright (c) 2000 XOOPS.org                           //
Severity: Major
Found in kernel/mimetypes.php - About 1 day to fix

    The class XoopsMimetypes_perms has 13 public methods. Consider refactoring XoopsMimetypes_perms to keep number of public methods under 10.
    Open

    class XoopsMimetypes_perms extends XoopsObject {
        var $db;
    
        // constructor
        function xoopsmimetypes_perms ($mperm_id=null) {
    Severity: Minor
    Found in kernel/mimetypes.php by phpmd

    TooManyPublicMethods

    Since: 0.1

    A class with too many public methods is probably a good suspect for refactoring, in order to reduce its complexity and find a way to have more fine grained objects.

    By default it ignores methods starting with 'get' or 'set'.

    Example

    Source https://phpmd.org/rules/codesize.html#toomanypublicmethods

    The class XoopsMimetypesHandler has an overall complexity of 56 which is very high. The configured complexity threshold is 50.
    Open

    class XoopsMimetypesHandler extends XoopsObjectHandler {
    
        function &create($isNew = true) {
            $tplfile = new XoopsTplfile();
            if ($isNew) {
    Severity: Minor
    Found in kernel/mimetypes.php by phpmd

    The class XoopsMimetypes_permsHandler has an overall complexity of 57 which is very high. The configured complexity threshold is 50.
    Open

    class XoopsMimetypes_permsHandler extends XoopsObjectHandler {
        var $_errors = array();
    
        function get_mimetypes($limit=20, $start=0, $module=-1, $OtherCriteria=null, $asobject=true) {
            $ret = array();
    Severity: Minor
    Found in kernel/mimetypes.php by phpmd

    Method insert has 54 lines of code (exceeds 25 allowed). Consider refactoring.
    Open

        function insert(&$mimetype_object, $force = false) {
            if (strtolower(get_class($mimetype_object)) != 'xoopsmimetypes_perms') {
                return false;
            }
            if (!$mimetype_object->isDirty()) {
    Severity: Major
    Found in kernel/mimetypes.php - About 2 hrs to fix

      Method insert has 48 lines of code (exceeds 25 allowed). Consider refactoring.
      Open

          function insert(&$mimetype_object, $force = false) {
              if (strtolower(get_class($mimetype_object)) != 'xoopsmimetypes') {
                  return false;
              }
              if (!$mimetype_object->isDirty()) {
      Severity: Minor
      Found in kernel/mimetypes.php - About 1 hr to fix

        Function get_mimetypes has a Cognitive Complexity of 14 (exceeds 5 allowed). Consider refactoring.
        Open

            function get_mimetypes($limit=20, $start=0, $module=-1, $OtherCriteria=null, $asobject=true) {
                $ret = array();
                $criteria = new CriteriaCompo();
                if ( is_object($OtherCriteria) ) {
                    $criteria->add($OtherCriteria, 'AND');
        Severity: Minor
        Found in kernel/mimetypes.php - About 1 hr to fix

        Cognitive Complexity

        Cognitive Complexity is a measure of how difficult a unit of code is to intuitively understand. Unlike Cyclomatic Complexity, which determines how difficult your code will be to test, Cognitive Complexity tells you how difficult your code will be to read and comprehend.

        A method's cognitive complexity is based on a few simple rules:

        • Code is not considered more complex when it uses shorthand that the language provides for collapsing multiple statements into one
        • Code is considered more complex for each "break in the linear flow of the code"
        • Code is considered more complex when "flow breaking structures are nested"

        Further reading

        Function get_mimetypes has a Cognitive Complexity of 14 (exceeds 5 allowed). Consider refactoring.
        Open

            function get_mimetypes($limit=20, $start=0, $status=-1, $OtherCriteria=null, $sort='mime_ext', $order='ASC', $asobject=true) {
                $ret = array();
                $criteria = new CriteriaCompo();
        
                if ( is_object($OtherCriteria) ) {
        Severity: Minor
        Found in kernel/mimetypes.php - About 1 hr to fix

        Cognitive Complexity

        Cognitive Complexity is a measure of how difficult a unit of code is to intuitively understand. Unlike Cyclomatic Complexity, which determines how difficult your code will be to test, Cognitive Complexity tells you how difficult your code will be to read and comprehend.

        A method's cognitive complexity is based on a few simple rules:

        • Code is not considered more complex when it uses shorthand that the language provides for collapsing multiple statements into one
        • Code is considered more complex for each "break in the linear flow of the code"
        • Code is considered more complex when "flow breaking structures are nested"

        Further reading

        Method get_mimetypes has 40 lines of code (exceeds 25 allowed). Consider refactoring.
        Open

            function get_mimetypes($limit=20, $start=0, $module=-1, $OtherCriteria=null, $asobject=true) {
                $ret = array();
                $criteria = new CriteriaCompo();
                if ( is_object($OtherCriteria) ) {
                    $criteria->add($OtherCriteria, 'AND');
        Severity: Minor
        Found in kernel/mimetypes.php - About 1 hr to fix

          Method get_mimetypes has 37 lines of code (exceeds 25 allowed). Consider refactoring.
          Open

              function get_mimetypes($limit=20, $start=0, $status=-1, $OtherCriteria=null, $sort='mime_ext', $order='ASC', $asobject=true) {
                  $ret = array();
                  $criteria = new CriteriaCompo();
          
                  if ( is_object($OtherCriteria) ) {
          Severity: Minor
          Found in kernel/mimetypes.php - About 1 hr to fix

            Function insert has a Cognitive Complexity of 10 (exceeds 5 allowed). Consider refactoring.
            Open

                function insert(&$mimetype_object, $force = false) {
                    if (strtolower(get_class($mimetype_object)) != 'xoopsmimetypes') {
                        return false;
                    }
                    if (!$mimetype_object->isDirty()) {
            Severity: Minor
            Found in kernel/mimetypes.php - About 1 hr to fix

            Cognitive Complexity

            Cognitive Complexity is a measure of how difficult a unit of code is to intuitively understand. Unlike Cyclomatic Complexity, which determines how difficult your code will be to test, Cognitive Complexity tells you how difficult your code will be to read and comprehend.

            A method's cognitive complexity is based on a few simple rules:

            • Code is not considered more complex when it uses shorthand that the language provides for collapsing multiple statements into one
            • Code is considered more complex for each "break in the linear flow of the code"
            • Code is considered more complex when "flow breaking structures are nested"

            Further reading

            Function insert has a Cognitive Complexity of 10 (exceeds 5 allowed). Consider refactoring.
            Open

                function insert(&$mimetype_object, $force = false) {
                    if (strtolower(get_class($mimetype_object)) != 'xoopsmimetypes_perms') {
                        return false;
                    }
                    if (!$mimetype_object->isDirty()) {
            Severity: Minor
            Found in kernel/mimetypes.php - About 1 hr to fix

            Cognitive Complexity

            Cognitive Complexity is a measure of how difficult a unit of code is to intuitively understand. Unlike Cyclomatic Complexity, which determines how difficult your code will be to test, Cognitive Complexity tells you how difficult your code will be to read and comprehend.

            A method's cognitive complexity is based on a few simple rules:

            • Code is not considered more complex when it uses shorthand that the language provides for collapsing multiple statements into one
            • Code is considered more complex for each "break in the linear flow of the code"
            • Code is considered more complex when "flow breaking structures are nested"

            Further reading

            Function Get_TypeList has a Cognitive Complexity of 10 (exceeds 5 allowed). Consider refactoring.
            Open

                function Get_TypeList() {
                    $ret = array();
                    $sql = 'SELECT * FROM ' . $this->db->prefix("mimetypes") ;
            
                    $result = $this->db->query($sql);
            Severity: Minor
            Found in kernel/mimetypes.php - About 1 hr to fix

            Cognitive Complexity

            Cognitive Complexity is a measure of how difficult a unit of code is to intuitively understand. Unlike Cyclomatic Complexity, which determines how difficult your code will be to test, Cognitive Complexity tells you how difficult your code will be to read and comprehend.

            A method's cognitive complexity is based on a few simple rules:

            • Code is not considered more complex when it uses shorthand that the language provides for collapsing multiple statements into one
            • Code is considered more complex for each "break in the linear flow of the code"
            • Code is considered more complex when "flow breaking structures are nested"

            Further reading

            Method get_mimetypes has 7 arguments (exceeds 4 allowed). Consider refactoring.
            Open

                function get_mimetypes($limit=20, $start=0, $status=-1, $OtherCriteria=null, $sort='mime_ext', $order='ASC', $asobject=true) {
            Severity: Major
            Found in kernel/mimetypes.php - About 50 mins to fix

              Method get_mimetypes has 5 arguments (exceeds 4 allowed). Consider refactoring.
              Open

                  function get_mimetypes($limit=20, $start=0, $module=-1, $OtherCriteria=null, $asobject=true) {
              Severity: Minor
              Found in kernel/mimetypes.php - About 35 mins to fix

                Method XoopsFormSelectType has 5 arguments (exceeds 4 allowed). Consider refactoring.
                Open

                    function XoopsFormSelectType( $caption, $name, $value=null, $size=1, $multiple=false ) {
                Severity: Minor
                Found in kernel/mimetypes.php - About 35 mins to fix

                  Method XoopsFormSelectMime has 5 arguments (exceeds 4 allowed). Consider refactoring.
                  Open

                      function XoopsFormSelectMime( $caption, $name, $value=null, $size=1, $multiple=false ) {
                  Severity: Minor
                  Found in kernel/mimetypes.php - About 35 mins to fix

                    Function delete has a Cognitive Complexity of 7 (exceeds 5 allowed). Consider refactoring.
                    Open

                        function delete(&$mimetype_object, $force = false) {
                            if (strtolower(get_class($mimetype_object)) != 'xoopsmimetypes') {
                                return false;
                            }
                    
                    
                    Severity: Minor
                    Found in kernel/mimetypes.php - About 35 mins to fix

                    Cognitive Complexity

                    Cognitive Complexity is a measure of how difficult a unit of code is to intuitively understand. Unlike Cyclomatic Complexity, which determines how difficult your code will be to test, Cognitive Complexity tells you how difficult your code will be to read and comprehend.

                    A method's cognitive complexity is based on a few simple rules:

                    • Code is not considered more complex when it uses shorthand that the language provides for collapsing multiple statements into one
                    • Code is considered more complex for each "break in the linear flow of the code"
                    • Code is considered more complex when "flow breaking structures are nested"

                    Further reading

                    Function allowedMimeTypes has a Cognitive Complexity of 7 (exceeds 5 allowed). Consider refactoring.
                    Open

                        function allowedMimeTypes( $mid, $groups, $allowedMimeTypes ) {
                            $ret = array();
                            $sql = 'SELECT p.mperm_groups, t.mime_ext, t.mime_types FROM ' . $this->db->prefix('mimetypes_perms') . ' p LEFT JOIN ' .
                            $this->db->prefix("mimetypes") . ' t on p.mperm_mime = t.mime_id WHERE mperm_module=' . $mid;
                    
                    
                    Severity: Minor
                    Found in kernel/mimetypes.php - About 35 mins to fix

                    Cognitive Complexity

                    Cognitive Complexity is a measure of how difficult a unit of code is to intuitively understand. Unlike Cyclomatic Complexity, which determines how difficult your code will be to test, Cognitive Complexity tells you how difficult your code will be to read and comprehend.

                    A method's cognitive complexity is based on a few simple rules:

                    • Code is not considered more complex when it uses shorthand that the language provides for collapsing multiple statements into one
                    • Code is considered more complex for each "break in the linear flow of the code"
                    • Code is considered more complex when "flow breaking structures are nested"

                    Further reading

                    Avoid too many return statements within this method.
                    Open

                            return true;
                    Severity: Major
                    Found in kernel/mimetypes.php - About 30 mins to fix

                      Avoid too many return statements within this method.
                      Open

                              return true;
                      Severity: Major
                      Found in kernel/mimetypes.php - About 30 mins to fix

                        Function GetSelectList has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring.
                        Open

                            function &GetSelectList($criteria = null) {
                                $ret = array();
                                $limit = $start = 0;
                                $sql = 'SELECT * FROM '.$this->db->prefix('mimetypes');
                                if (isset($criteria) && is_subclass_of($criteria, 'criteriaelement')) {
                        Severity: Minor
                        Found in kernel/mimetypes.php - About 25 mins to fix

                        Cognitive Complexity

                        Cognitive Complexity is a measure of how difficult a unit of code is to intuitively understand. Unlike Cyclomatic Complexity, which determines how difficult your code will be to test, Cognitive Complexity tells you how difficult your code will be to read and comprehend.

                        A method's cognitive complexity is based on a few simple rules:

                        • Code is not considered more complex when it uses shorthand that the language provides for collapsing multiple statements into one
                        • Code is considered more complex for each "break in the linear flow of the code"
                        • Code is considered more complex when "flow breaking structures are nested"

                        Further reading

                        The method insert() has an NPath complexity of 256. The configured NPath complexity threshold is 200.
                        Open

                            function insert(&$mimetype_object, $force = false) {
                                if (strtolower(get_class($mimetype_object)) != 'xoopsmimetypes') {
                                    return false;
                                }
                                if (!$mimetype_object->isDirty()) {
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpmd

                        NPathComplexity

                        Since: 0.1

                        The NPath complexity of a method is the number of acyclic execution paths through that method. A threshold of 200 is generally considered the point where measures should be taken to reduce complexity.

                        Example

                        class Foo {
                            function bar() {
                                // lots of complicated code
                            }
                        }

                        Source https://phpmd.org/rules/codesize.html#npathcomplexity

                        The method get_mimetypes() has an NPath complexity of 288. The configured NPath complexity threshold is 200.
                        Open

                            function get_mimetypes($limit=20, $start=0, $module=-1, $OtherCriteria=null, $asobject=true) {
                                $ret = array();
                                $criteria = new CriteriaCompo();
                                if ( is_object($OtherCriteria) ) {
                                    $criteria->add($OtherCriteria, 'AND');
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpmd

                        NPathComplexity

                        Since: 0.1

                        The NPath complexity of a method is the number of acyclic execution paths through that method. A threshold of 200 is generally considered the point where measures should be taken to reduce complexity.

                        Example

                        class Foo {
                            function bar() {
                                // lots of complicated code
                            }
                        }

                        Source https://phpmd.org/rules/codesize.html#npathcomplexity

                        The method get_mimetypes() has an NPath complexity of 288. The configured NPath complexity threshold is 200.
                        Open

                            function get_mimetypes($limit=20, $start=0, $status=-1, $OtherCriteria=null, $sort='mime_ext', $order='ASC', $asobject=true) {
                                $ret = array();
                                $criteria = new CriteriaCompo();
                        
                                if ( is_object($OtherCriteria) ) {
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpmd

                        NPathComplexity

                        Since: 0.1

                        The NPath complexity of a method is the number of acyclic execution paths through that method. A threshold of 200 is generally considered the point where measures should be taken to reduce complexity.

                        Example

                        class Foo {
                            function bar() {
                                // lots of complicated code
                            }
                        }

                        Source https://phpmd.org/rules/codesize.html#npathcomplexity

                        The method insert() has an NPath complexity of 256. The configured NPath complexity threshold is 200.
                        Open

                            function insert(&$mimetype_object, $force = false) {
                                if (strtolower(get_class($mimetype_object)) != 'xoopsmimetypes_perms') {
                                    return false;
                                }
                                if (!$mimetype_object->isDirty()) {
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpmd

                        NPathComplexity

                        Since: 0.1

                        The NPath complexity of a method is the number of acyclic execution paths through that method. A threshold of 200 is generally considered the point where measures should be taken to reduce complexity.

                        Example

                        class Foo {
                            function bar() {
                                // lots of complicated code
                            }
                        }

                        Source https://phpmd.org/rules/codesize.html#npathcomplexity

                        The method get_mimetypes() has a Cyclomatic Complexity of 13. The configured cyclomatic complexity threshold is 10.
                        Open

                            function get_mimetypes($limit=20, $start=0, $status=-1, $OtherCriteria=null, $sort='mime_ext', $order='ASC', $asobject=true) {
                                $ret = array();
                                $criteria = new CriteriaCompo();
                        
                                if ( is_object($OtherCriteria) ) {
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpmd

                        CyclomaticComplexity

                        Since: 0.1

                        Complexity is determined by the number of decision points in a method plus one for the method entry. The decision points are 'if', 'while', 'for', and 'case labels'. Generally, 1-4 is low complexity, 5-7 indicates moderate complexity, 8-10 is high complexity, and 11+ is very high complexity.

                        Example

                        // Cyclomatic Complexity = 11
                        class Foo {
                        1   public function example() {
                        2       if ($a == $b) {
                        3           if ($a1 == $b1) {
                                        fiddle();
                        4           } elseif ($a2 == $b2) {
                                        fiddle();
                                    } else {
                                        fiddle();
                                    }
                        5       } elseif ($c == $d) {
                        6           while ($c == $d) {
                                        fiddle();
                                    }
                        7        } elseif ($e == $f) {
                        8           for ($n = 0; $n < $h; $n++) {
                                        fiddle();
                                    }
                                } else {
                                    switch ($z) {
                        9               case 1:
                                            fiddle();
                                            break;
                        10              case 2:
                                            fiddle();
                                            break;
                        11              case 3:
                                            fiddle();
                                            break;
                                        default:
                                            fiddle();
                                            break;
                                    }
                                }
                            }
                        }

                        Source https://phpmd.org/rules/codesize.html#cyclomaticcomplexity

                        The method get_mimetypes() has a Cyclomatic Complexity of 13. The configured cyclomatic complexity threshold is 10.
                        Open

                            function get_mimetypes($limit=20, $start=0, $module=-1, $OtherCriteria=null, $asobject=true) {
                                $ret = array();
                                $criteria = new CriteriaCompo();
                                if ( is_object($OtherCriteria) ) {
                                    $criteria->add($OtherCriteria, 'AND');
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpmd

                        CyclomaticComplexity

                        Since: 0.1

                        Complexity is determined by the number of decision points in a method plus one for the method entry. The decision points are 'if', 'while', 'for', and 'case labels'. Generally, 1-4 is low complexity, 5-7 indicates moderate complexity, 8-10 is high complexity, and 11+ is very high complexity.

                        Example

                        // Cyclomatic Complexity = 11
                        class Foo {
                        1   public function example() {
                        2       if ($a == $b) {
                        3           if ($a1 == $b1) {
                                        fiddle();
                        4           } elseif ($a2 == $b2) {
                                        fiddle();
                                    } else {
                                        fiddle();
                                    }
                        5       } elseif ($c == $d) {
                        6           while ($c == $d) {
                                        fiddle();
                                    }
                        7        } elseif ($e == $f) {
                        8           for ($n = 0; $n < $h; $n++) {
                                        fiddle();
                                    }
                                } else {
                                    switch ($z) {
                        9               case 1:
                                            fiddle();
                                            break;
                        10              case 2:
                                            fiddle();
                                            break;
                        11              case 3:
                                            fiddle();
                                            break;
                                        default:
                                            fiddle();
                                            break;
                                    }
                                }
                            }
                        }

                        Source https://phpmd.org/rules/codesize.html#cyclomaticcomplexity

                        Avoid using undefined variables such as '$mime_name' which will lead to PHP notices.
                        Open

                                    $this->db->quoteString($mime_name),
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpmd

                        UndefinedVariable

                        Since: 2.8.0

                        Detects when a variable is used that has not been defined before.

                        Example

                        class Foo
                        {
                            private function bar()
                            {
                                // $message is undefined
                                echo $message;
                            }
                        }

                        Source https://phpmd.org/rules/cleancode.html#undefinedvariable

                        Avoid using undefined variables such as '$mperm_mime' which will lead to PHP notices.
                        Open

                                    $mperm_mime,
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpmd

                        UndefinedVariable

                        Since: 2.8.0

                        Detects when a variable is used that has not been defined before.

                        Example

                        class Foo
                        {
                            private function bar()
                            {
                                // $message is undefined
                                echo $message;
                            }
                        }

                        Source https://phpmd.org/rules/cleancode.html#undefinedvariable

                        Avoid using undefined variables such as '$mperm_maxwidth' which will lead to PHP notices.
                        Open

                                    $mperm_maxwidth,
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpmd

                        UndefinedVariable

                        Since: 2.8.0

                        Detects when a variable is used that has not been defined before.

                        Example

                        class Foo
                        {
                            private function bar()
                            {
                                // $message is undefined
                                echo $message;
                            }
                        }

                        Source https://phpmd.org/rules/cleancode.html#undefinedvariable

                        Avoid using undefined variables such as '$mperm_maxheight' which will lead to PHP notices.
                        Open

                                    $mperm_maxheight,
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpmd

                        UndefinedVariable

                        Since: 2.8.0

                        Detects when a variable is used that has not been defined before.

                        Example

                        class Foo
                        {
                            private function bar()
                            {
                                // $message is undefined
                                echo $message;
                            }
                        }

                        Source https://phpmd.org/rules/cleancode.html#undefinedvariable

                        Avoid using undefined variables such as '$mime_ext' which will lead to PHP notices.
                        Open

                                    $this->db->quoteString($mime_ext),
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpmd

                        UndefinedVariable

                        Since: 2.8.0

                        Detects when a variable is used that has not been defined before.

                        Example

                        class Foo
                        {
                            private function bar()
                            {
                                // $message is undefined
                                echo $message;
                            }
                        }

                        Source https://phpmd.org/rules/cleancode.html#undefinedvariable

                        Avoid using undefined variables such as '$mime_id' which will lead to PHP notices.
                        Open

                                    $mime_id,
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpmd

                        UndefinedVariable

                        Since: 2.8.0

                        Detects when a variable is used that has not been defined before.

                        Example

                        class Foo
                        {
                            private function bar()
                            {
                                // $message is undefined
                                echo $message;
                            }
                        }

                        Source https://phpmd.org/rules/cleancode.html#undefinedvariable

                        Avoid using undefined variables such as '$mime_name' which will lead to PHP notices.
                        Open

                                    $this->db->quoteString($mime_name),
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpmd

                        UndefinedVariable

                        Since: 2.8.0

                        Detects when a variable is used that has not been defined before.

                        Example

                        class Foo
                        {
                            private function bar()
                            {
                                // $message is undefined
                                echo $message;
                            }
                        }

                        Source https://phpmd.org/rules/cleancode.html#undefinedvariable

                        Avoid using undefined variables such as '$mime_status' which will lead to PHP notices.
                        Open

                                    $mime_status);
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpmd

                        UndefinedVariable

                        Since: 2.8.0

                        Detects when a variable is used that has not been defined before.

                        Example

                        class Foo
                        {
                            private function bar()
                            {
                                // $message is undefined
                                echo $message;
                            }
                        }

                        Source https://phpmd.org/rules/cleancode.html#undefinedvariable

                        Avoid using undefined variables such as '$mperm_groups' which will lead to PHP notices.
                        Open

                                    $mperm_groups,
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpmd

                        UndefinedVariable

                        Since: 2.8.0

                        Detects when a variable is used that has not been defined before.

                        Example

                        class Foo
                        {
                            private function bar()
                            {
                                // $message is undefined
                                echo $message;
                            }
                        }

                        Source https://phpmd.org/rules/cleancode.html#undefinedvariable

                        Avoid using undefined variables such as '$mime_types' which will lead to PHP notices.
                        Open

                                    $this->db->quoteString($mime_types),
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpmd

                        UndefinedVariable

                        Since: 2.8.0

                        Detects when a variable is used that has not been defined before.

                        Example

                        class Foo
                        {
                            private function bar()
                            {
                                // $message is undefined
                                echo $message;
                            }
                        }

                        Source https://phpmd.org/rules/cleancode.html#undefinedvariable

                        Avoid using undefined variables such as '$mperm_module' which will lead to PHP notices.
                        Open

                                    $mperm_module,
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpmd

                        UndefinedVariable

                        Since: 2.8.0

                        Detects when a variable is used that has not been defined before.

                        Example

                        class Foo
                        {
                            private function bar()
                            {
                                // $message is undefined
                                echo $message;
                            }
                        }

                        Source https://phpmd.org/rules/cleancode.html#undefinedvariable

                        Avoid using undefined variables such as '$mperm_id' which will lead to PHP notices.
                        Open

                                    $mperm_id,
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpmd

                        UndefinedVariable

                        Since: 2.8.0

                        Detects when a variable is used that has not been defined before.

                        Example

                        class Foo
                        {
                            private function bar()
                            {
                                // $message is undefined
                                echo $message;
                            }
                        }

                        Source https://phpmd.org/rules/cleancode.html#undefinedvariable

                        Avoid using undefined variables such as '$mperm_groups' which will lead to PHP notices.
                        Open

                                    $this->db->quoteString($mperm_groups),
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpmd

                        UndefinedVariable

                        Since: 2.8.0

                        Detects when a variable is used that has not been defined before.

                        Example

                        class Foo
                        {
                            private function bar()
                            {
                                // $message is undefined
                                echo $message;
                            }
                        }

                        Source https://phpmd.org/rules/cleancode.html#undefinedvariable

                        Avoid using undefined variables such as '$mime_id' which will lead to PHP notices.
                        Open

                                    $mime_id);
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpmd

                        UndefinedVariable

                        Since: 2.8.0

                        Detects when a variable is used that has not been defined before.

                        Example

                        class Foo
                        {
                            private function bar()
                            {
                                // $message is undefined
                                echo $message;
                            }
                        }

                        Source https://phpmd.org/rules/cleancode.html#undefinedvariable

                        Avoid using undefined variables such as '$mperm_status' which will lead to PHP notices.
                        Open

                                    $mperm_status,
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpmd

                        UndefinedVariable

                        Since: 2.8.0

                        Detects when a variable is used that has not been defined before.

                        Example

                        class Foo
                        {
                            private function bar()
                            {
                                // $message is undefined
                                echo $message;
                            }
                        }

                        Source https://phpmd.org/rules/cleancode.html#undefinedvariable

                        Avoid using undefined variables such as '$mperm_maxsize' which will lead to PHP notices.
                        Open

                                    $mperm_maxsize,
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpmd

                        UndefinedVariable

                        Since: 2.8.0

                        Detects when a variable is used that has not been defined before.

                        Example

                        class Foo
                        {
                            private function bar()
                            {
                                // $message is undefined
                                echo $message;
                            }
                        }

                        Source https://phpmd.org/rules/cleancode.html#undefinedvariable

                        Avoid using undefined variables such as '$mime_ext' which will lead to PHP notices.
                        Open

                                    $this->db->quoteString($mime_ext),
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpmd

                        UndefinedVariable

                        Since: 2.8.0

                        Detects when a variable is used that has not been defined before.

                        Example

                        class Foo
                        {
                            private function bar()
                            {
                                // $message is undefined
                                echo $message;
                            }
                        }

                        Source https://phpmd.org/rules/cleancode.html#undefinedvariable

                        Avoid using undefined variables such as '$mime_status' which will lead to PHP notices.
                        Open

                                    $mime_status,
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpmd

                        UndefinedVariable

                        Since: 2.8.0

                        Detects when a variable is used that has not been defined before.

                        Example

                        class Foo
                        {
                            private function bar()
                            {
                                // $message is undefined
                                echo $message;
                            }
                        }

                        Source https://phpmd.org/rules/cleancode.html#undefinedvariable

                        Avoid using undefined variables such as '$mperm_status' which will lead to PHP notices.
                        Open

                                    $mperm_status,
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpmd

                        UndefinedVariable

                        Since: 2.8.0

                        Detects when a variable is used that has not been defined before.

                        Example

                        class Foo
                        {
                            private function bar()
                            {
                                // $message is undefined
                                echo $message;
                            }
                        }

                        Source https://phpmd.org/rules/cleancode.html#undefinedvariable

                        Avoid using undefined variables such as '$mperm_maxsize' which will lead to PHP notices.
                        Open

                                    $mperm_maxsize );
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpmd

                        UndefinedVariable

                        Since: 2.8.0

                        Detects when a variable is used that has not been defined before.

                        Example

                        class Foo
                        {
                            private function bar()
                            {
                                // $message is undefined
                                echo $message;
                            }
                        }

                        Source https://phpmd.org/rules/cleancode.html#undefinedvariable

                        Avoid using undefined variables such as '$mperm_mime' which will lead to PHP notices.
                        Open

                                    $mperm_mime,
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpmd

                        UndefinedVariable

                        Since: 2.8.0

                        Detects when a variable is used that has not been defined before.

                        Example

                        class Foo
                        {
                            private function bar()
                            {
                                // $message is undefined
                                echo $message;
                            }
                        }

                        Source https://phpmd.org/rules/cleancode.html#undefinedvariable

                        Avoid using undefined variables such as '$mime_types' which will lead to PHP notices.
                        Open

                                    $this->db->quoteString($mime_types),
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpmd

                        UndefinedVariable

                        Since: 2.8.0

                        Detects when a variable is used that has not been defined before.

                        Example

                        class Foo
                        {
                            private function bar()
                            {
                                // $message is undefined
                                echo $message;
                            }
                        }

                        Source https://phpmd.org/rules/cleancode.html#undefinedvariable

                        Avoid using undefined variables such as '$mperm_module' which will lead to PHP notices.
                        Open

                                    $mperm_module,
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpmd

                        UndefinedVariable

                        Since: 2.8.0

                        Detects when a variable is used that has not been defined before.

                        Example

                        class Foo
                        {
                            private function bar()
                            {
                                // $message is undefined
                                echo $message;
                            }
                        }

                        Source https://phpmd.org/rules/cleancode.html#undefinedvariable

                        Avoid using undefined variables such as '$mperm_maxwidth' which will lead to PHP notices.
                        Open

                                    $mperm_maxwidth,
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpmd

                        UndefinedVariable

                        Since: 2.8.0

                        Detects when a variable is used that has not been defined before.

                        Example

                        class Foo
                        {
                            private function bar()
                            {
                                // $message is undefined
                                echo $message;
                            }
                        }

                        Source https://phpmd.org/rules/cleancode.html#undefinedvariable

                        Avoid using undefined variables such as '$mperm_id' which will lead to PHP notices.
                        Open

                                    $mperm_id);
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpmd

                        UndefinedVariable

                        Since: 2.8.0

                        Detects when a variable is used that has not been defined before.

                        Example

                        class Foo
                        {
                            private function bar()
                            {
                                // $message is undefined
                                echo $message;
                            }
                        }

                        Source https://phpmd.org/rules/cleancode.html#undefinedvariable

                        Avoid using undefined variables such as '$mperm_maxheight' which will lead to PHP notices.
                        Open

                                    $mperm_maxheight,
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpmd

                        UndefinedVariable

                        Since: 2.8.0

                        Detects when a variable is used that has not been defined before.

                        Example

                        class Foo
                        {
                            private function bar()
                            {
                                // $message is undefined
                                echo $message;
                            }
                        }

                        Source https://phpmd.org/rules/cleancode.html#undefinedvariable

                        The method XoopsFormSelectMime has a boolean flag argument $multiple, which is a certain sign of a Single Responsibility Principle violation.
                        Open

                            function XoopsFormSelectMime( $caption, $name, $value=null, $size=1, $multiple=false ) {
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpmd

                        BooleanArgumentFlag

                        Since: 1.4.0

                        A boolean flag argument is a reliable indicator for a violation of the Single Responsibility Principle (SRP). You can fix this problem by extracting the logic in the boolean flag into its own class or method.

                        Example

                        class Foo {
                            public function bar($flag = true) {
                            }
                        }

                        Source https://phpmd.org/rules/cleancode.html#booleanargumentflag

                        Missing class import via use statement (line '122', column '18').
                        Open

                                $tplfile = new XoopsTplfile();
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpmd

                        MissingImport

                        Since: 2.7.0

                        Importing all external classes in a file through use statements makes them clearly visible.

                        Example

                        function make() {
                            return new \stdClass();
                        }

                        Source http://phpmd.org/rules/cleancode.html#MissingImport

                        Missing class import via use statement (line '142', column '18').
                        Open

                                        $ret[] = new xoopsmimetypes( $myrow );
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpmd

                        MissingImport

                        Since: 2.7.0

                        Importing all external classes in a file through use statements makes them clearly visible.

                        Example

                        function make() {
                            return new \stdClass();
                        }

                        Source http://phpmd.org/rules/cleancode.html#MissingImport

                        Missing class import via use statement (line '327', column '14').
                        Open

                                $ret = new XoopsFormSelect($caption, $name, $value, $size, $multiple);
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpmd

                        MissingImport

                        Since: 2.7.0

                        Importing all external classes in a file through use statements makes them clearly visible.

                        Example

                        function make() {
                            return new \stdClass();
                        }

                        Source http://phpmd.org/rules/cleancode.html#MissingImport

                        Missing class import via use statement (line '320', column '19').
                        Open

                                $criteria = new CriteriaCompo();
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpmd

                        MissingImport

                        Since: 2.7.0

                        Importing all external classes in a file through use statements makes them clearly visible.

                        Example

                        function make() {
                            return new \stdClass();
                        }

                        Source http://phpmd.org/rules/cleancode.html#MissingImport

                        The method deletebyMimeModule has a boolean flag argument $force, which is a certain sign of a Single Responsibility Principle violation.
                        Open

                            function deletebyMimeModule(&$mimetype_object, $force = false) {
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpmd

                        BooleanArgumentFlag

                        Since: 1.4.0

                        A boolean flag argument is a reliable indicator for a violation of the Single Responsibility Principle (SRP). You can fix this problem by extracting the logic in the boolean flag into its own class or method.

                        Example

                        class Foo {
                            public function bar($flag = true) {
                            }
                        }

                        Source https://phpmd.org/rules/cleancode.html#booleanargumentflag

                        The method deletebyModule has a boolean flag argument $force, which is a certain sign of a Single Responsibility Principle violation.
                        Open

                            function deletebyModule(&$mimetype_object, $force = false) {
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpmd

                        BooleanArgumentFlag

                        Since: 1.4.0

                        A boolean flag argument is a reliable indicator for a violation of the Single Responsibility Principle (SRP). You can fix this problem by extracting the logic in the boolean flag into its own class or method.

                        Example

                        class Foo {
                            public function bar($flag = true) {
                            }
                        }

                        Source https://phpmd.org/rules/cleancode.html#booleanargumentflag

                        The method create has a boolean flag argument $isNew, which is a certain sign of a Single Responsibility Principle violation.
                        Open

                            function &create($isNew = true) {
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpmd

                        BooleanArgumentFlag

                        Since: 1.4.0

                        A boolean flag argument is a reliable indicator for a violation of the Single Responsibility Principle (SRP). You can fix this problem by extracting the logic in the boolean flag into its own class or method.

                        Example

                        class Foo {
                            public function bar($flag = true) {
                            }
                        }

                        Source https://phpmd.org/rules/cleancode.html#booleanargumentflag

                        The method get_byExt has a boolean flag argument $asobject, which is a certain sign of a Single Responsibility Principle violation.
                        Open

                            function get_byExt( $mime_ext, $asobject=true ) {
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpmd

                        BooleanArgumentFlag

                        Since: 1.4.0

                        A boolean flag argument is a reliable indicator for a violation of the Single Responsibility Principle (SRP). You can fix this problem by extracting the logic in the boolean flag into its own class or method.

                        Example

                        class Foo {
                            public function bar($flag = true) {
                            }
                        }

                        Source https://phpmd.org/rules/cleancode.html#booleanargumentflag

                        Missing class import via use statement (line '225', column '27').
                        Open

                                    $mimetype_object = new xoopsmimetypes();
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpmd

                        MissingImport

                        Since: 2.7.0

                        Importing all external classes in a file through use statements makes them clearly visible.

                        Example

                        function make() {
                            return new \stdClass();
                        }

                        Source http://phpmd.org/rules/cleancode.html#MissingImport

                        The method get_mimetypes has a boolean flag argument $asobject, which is a certain sign of a Single Responsibility Principle violation.
                        Open

                            function get_mimetypes($limit=20, $start=0, $module=-1, $OtherCriteria=null, $asobject=true) {
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpmd

                        BooleanArgumentFlag

                        Since: 1.4.0

                        A boolean flag argument is a reliable indicator for a violation of the Single Responsibility Principle (SRP). You can fix this problem by extracting the logic in the boolean flag into its own class or method.

                        Example

                        class Foo {
                            public function bar($flag = true) {
                            }
                        }

                        Source https://phpmd.org/rules/cleancode.html#booleanargumentflag

                        The method insert has a boolean flag argument $force, which is a certain sign of a Single Responsibility Principle violation.
                        Open

                            function insert(&$mimetype_object, $force = false) {
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpmd

                        BooleanArgumentFlag

                        Since: 1.4.0

                        A boolean flag argument is a reliable indicator for a violation of the Single Responsibility Principle (SRP). You can fix this problem by extracting the logic in the boolean flag into its own class or method.

                        Example

                        class Foo {
                            public function bar($flag = true) {
                            }
                        }

                        Source https://phpmd.org/rules/cleancode.html#booleanargumentflag

                        Missing class import via use statement (line '189', column '18').
                        Open

                                        $ret[] = new xoopsmimetypes( $myrow );
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpmd

                        MissingImport

                        Since: 2.7.0

                        Importing all external classes in a file through use statements makes them clearly visible.

                        Example

                        function make() {
                            return new \stdClass();
                        }

                        Source http://phpmd.org/rules/cleancode.html#MissingImport

                        Remove error control operator '@' on line 733.
                        Open

                            function allowedMimeTypes( $mid, $groups, $allowedMimeTypes ) {
                                $ret = array();
                                $sql = 'SELECT p.mperm_groups, t.mime_ext, t.mime_types FROM ' . $this->db->prefix('mimetypes_perms') . ' p LEFT JOIN ' .
                                $this->db->prefix("mimetypes") . ' t on p.mperm_mime = t.mime_id WHERE mperm_module=' . $mid;
                        
                        
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpmd

                        ErrorControlOperator

                        Error suppression should be avoided if possible as it doesn't just suppress the error, that you are trying to stop, but will also suppress errors that you didn't predict would ever occur. Consider changing error_reporting() level and/or setting up your own error handler.

                        Example

                        function foo($filePath) {
                            $file = @fopen($filPath); // hides exceptions
                            $key = @$array[$notExistingKey]; // assigns null to $key
                        }

                        Source http://phpmd.org/rules/cleancode.html#errorcontroloperator

                        The method delete has a boolean flag argument $force, which is a certain sign of a Single Responsibility Principle violation.
                        Open

                            function delete(&$mimetype_object, $force = false) {
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpmd

                        BooleanArgumentFlag

                        Since: 1.4.0

                        A boolean flag argument is a reliable indicator for a violation of the Single Responsibility Principle (SRP). You can fix this problem by extracting the logic in the boolean flag into its own class or method.

                        Example

                        class Foo {
                            public function bar($flag = true) {
                            }
                        }

                        Source https://phpmd.org/rules/cleancode.html#booleanargumentflag

                        The method get_mimetypes has a boolean flag argument $asobject, which is a certain sign of a Single Responsibility Principle violation.
                        Open

                            function get_mimetypes($limit=20, $start=0, $status=-1, $OtherCriteria=null, $sort='mime_ext', $order='ASC', $asobject=true) {
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpmd

                        BooleanArgumentFlag

                        Since: 1.4.0

                        A boolean flag argument is a reliable indicator for a violation of the Single Responsibility Principle (SRP). You can fix this problem by extracting the logic in the boolean flag into its own class or method.

                        Example

                        class Foo {
                            public function bar($flag = true) {
                            }
                        }

                        Source https://phpmd.org/rules/cleancode.html#booleanargumentflag

                        Missing class import via use statement (line '494', column '24').
                        Open

                                        $criteria->add(new Criteria('p.mperm_module', $v), 'AND');
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpmd

                        MissingImport

                        Since: 2.7.0

                        Importing all external classes in a file through use statements makes them clearly visible.

                        Example

                        function make() {
                            return new \stdClass();
                        }

                        Source http://phpmd.org/rules/cleancode.html#MissingImport

                        Missing class import via use statement (line '528', column '18').
                        Open

                                        $ret[] = new xoopsmimetypes_perms( $myrow );
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpmd

                        MissingImport

                        Since: 2.7.0

                        Importing all external classes in a file through use statements makes them clearly visible.

                        Example

                        function make() {
                            return new \stdClass();
                        }

                        Source http://phpmd.org/rules/cleancode.html#MissingImport

                        The method delete has a boolean flag argument $force, which is a certain sign of a Single Responsibility Principle violation.
                        Open

                            function delete(&$mimetype_object, $force = false) {
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpmd

                        BooleanArgumentFlag

                        Since: 1.4.0

                        A boolean flag argument is a reliable indicator for a violation of the Single Responsibility Principle (SRP). You can fix this problem by extracting the logic in the boolean flag into its own class or method.

                        Example

                        class Foo {
                            public function bar($flag = true) {
                            }
                        }

                        Source https://phpmd.org/rules/cleancode.html#booleanargumentflag

                        Missing class import via use statement (line '319', column '14').
                        Open

                                $ret = new XoopsFormSelect($caption, $name, $value, $size, $multiple);
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpmd

                        MissingImport

                        Since: 2.7.0

                        Importing all external classes in a file through use statements makes them clearly visible.

                        Example

                        function make() {
                            return new \stdClass();
                        }

                        Source http://phpmd.org/rules/cleancode.html#MissingImport

                        The method deletebyMime has a boolean flag argument $force, which is a certain sign of a Single Responsibility Principle violation.
                        Open

                            function deletebyMime(&$mimetype_object, $force = false) {
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpmd

                        BooleanArgumentFlag

                        Since: 1.4.0

                        A boolean flag argument is a reliable indicator for a violation of the Single Responsibility Principle (SRP). You can fix this problem by extracting the logic in the boolean flag into its own class or method.

                        Example

                        class Foo {
                            public function bar($flag = true) {
                            }
                        }

                        Source https://phpmd.org/rules/cleancode.html#booleanargumentflag

                        Missing class import via use statement (line '595', column '27').
                        Open

                                    $mimetype_object = new xoopsmimetypes();
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpmd

                        MissingImport

                        Since: 2.7.0

                        Importing all external classes in a file through use statements makes them clearly visible.

                        Example

                        function make() {
                            return new \stdClass();
                        }

                        Source http://phpmd.org/rules/cleancode.html#MissingImport

                        Missing class import via use statement (line '150', column '19').
                        Open

                                $criteria = new CriteriaCompo();
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpmd

                        MissingImport

                        Since: 2.7.0

                        Importing all external classes in a file through use statements makes them clearly visible.

                        Example

                        function make() {
                            return new \stdClass();
                        }

                        Source http://phpmd.org/rules/cleancode.html#MissingImport

                        The method insert has a boolean flag argument $force, which is a certain sign of a Single Responsibility Principle violation.
                        Open

                            function insert(&$mimetype_object, $force = false) {
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpmd

                        BooleanArgumentFlag

                        Since: 1.4.0

                        A boolean flag argument is a reliable indicator for a violation of the Single Responsibility Principle (SRP). You can fix this problem by extracting the logic in the boolean flag into its own class or method.

                        Example

                        class Foo {
                            public function bar($flag = true) {
                            }
                        }

                        Source https://phpmd.org/rules/cleancode.html#booleanargumentflag

                        Missing class import via use statement (line '497', column '23').
                        Open

                                    $criteria->add(new Criteria('p.mperm_module', $module), 'AND');
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpmd

                        MissingImport

                        Since: 2.7.0

                        Importing all external classes in a file through use statements makes them clearly visible.

                        Example

                        function make() {
                            return new \stdClass();
                        }

                        Source http://phpmd.org/rules/cleancode.html#MissingImport

                        Missing class import via use statement (line '158', column '24').
                        Open

                                        $criteria->add(new Criteria('mime_status', $v), 'AND');
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpmd

                        MissingImport

                        Since: 2.7.0

                        Importing all external classes in a file through use statements makes them clearly visible.

                        Example

                        function make() {
                            return new \stdClass();
                        }

                        Source http://phpmd.org/rules/cleancode.html#MissingImport

                        Missing class import via use statement (line '487', column '19').
                        Open

                                $criteria = new CriteriaCompo();
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpmd

                        MissingImport

                        Since: 2.7.0

                        Importing all external classes in a file through use statements makes them clearly visible.

                        Example

                        function make() {
                            return new \stdClass();
                        }

                        Source http://phpmd.org/rules/cleancode.html#MissingImport

                        The method get_byMimeModule has a boolean flag argument $asobject, which is a certain sign of a Single Responsibility Principle violation.
                        Open

                            function get_byMimeModule( $mime_id, $mid, $asobject=true) {
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpmd

                        BooleanArgumentFlag

                        Since: 1.4.0

                        A boolean flag argument is a reliable indicator for a violation of the Single Responsibility Principle (SRP). You can fix this problem by extracting the logic in the boolean flag into its own class or method.

                        Example

                        class Foo {
                            public function bar($flag = true) {
                            }
                        }

                        Source https://phpmd.org/rules/cleancode.html#booleanargumentflag

                        Missing class import via use statement (line '161', column '23').
                        Open

                                    $criteria->add(new Criteria('mime_status', $status), 'AND');
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpmd

                        MissingImport

                        Since: 2.7.0

                        Importing all external classes in a file through use statements makes them clearly visible.

                        Example

                        function make() {
                            return new \stdClass();
                        }

                        Source http://phpmd.org/rules/cleancode.html#MissingImport

                        The method XoopsFormSelectType has a boolean flag argument $multiple, which is a certain sign of a Single Responsibility Principle violation.
                        Open

                            function XoopsFormSelectType( $caption, $name, $value=null, $size=1, $multiple=false ) {
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpmd

                        BooleanArgumentFlag

                        Since: 1.4.0

                        A boolean flag argument is a reliable indicator for a violation of the Single Responsibility Principle (SRP). You can fix this problem by extracting the logic in the boolean flag into its own class or method.

                        Example

                        class Foo {
                            public function bar($flag = true) {
                            }
                        }

                        Source https://phpmd.org/rules/cleancode.html#booleanargumentflag

                        Missing class import via use statement (line '546', column '18').
                        Open

                                        $ret[] = new xoopsmimetypes_perms( $myrow );
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpmd

                        MissingImport

                        Since: 2.7.0

                        Importing all external classes in a file through use statements makes them clearly visible.

                        Example

                        function make() {
                            return new \stdClass();
                        }

                        Source http://phpmd.org/rules/cleancode.html#MissingImport

                        Avoid using static access to class 'MyTextSanitizer' in method 'mime_name'.
                        Open

                                    $myts = &MyTextSanitizer::getInstance();
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpmd

                        StaticAccess

                        Since: 1.4.0

                        Static access causes unexchangeable dependencies to other classes and leads to hard to test code. Avoid using static access at all costs and instead inject dependencies through the constructor. The only case when static access is acceptable is when used for factory methods.

                        Example

                        class Foo
                        {
                            public function bar()
                            {
                                Bar::baz();
                            }
                        }

                        Source https://phpmd.org/rules/cleancode.html#staticaccess

                        The method get_mimetypes uses an else expression. Else clauses are basically not necessary and you can simplify the code by not using them.
                        Open

                                    } else {
                                        $ret[] = new xoopsmimetypes( $myrow );
                                    }
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpmd

                        ElseExpression

                        Since: 1.4.0

                        An if expression with an else branch is basically not necessary. You can rewrite the conditions in a way that the else clause is not necessary and the code becomes simpler to read. To achieve this, use early return statements, though you may need to split the code it several smaller methods. For very simple assignments you could also use the ternary operations.

                        Example

                        class Foo
                        {
                            public function bar($flag)
                            {
                                if ($flag) {
                                    // one branch
                                } else {
                                    // another branch
                                }
                            }
                        }

                        Source https://phpmd.org/rules/cleancode.html#elseexpression

                        The method delete uses an else expression. Else clauses are basically not necessary and you can simplify the code by not using them.
                        Open

                                } else {
                                    $result = $this->db->query($sql);
                                }
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpmd

                        ElseExpression

                        Since: 1.4.0

                        An if expression with an else branch is basically not necessary. You can rewrite the conditions in a way that the else clause is not necessary and the code becomes simpler to read. To achieve this, use early return statements, though you may need to split the code it several smaller methods. For very simple assignments you could also use the ternary operations.

                        Example

                        class Foo
                        {
                            public function bar($flag)
                            {
                                if ($flag) {
                                    // one branch
                                } else {
                                    // another branch
                                }
                            }
                        }

                        Source https://phpmd.org/rules/cleancode.html#elseexpression

                        Avoid using static access to class 'Database' in method 'xoopsmimetypes'.
                        Open

                                $this->db = Database::getInstance();
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpmd

                        StaticAccess

                        Since: 1.4.0

                        Static access causes unexchangeable dependencies to other classes and leads to hard to test code. Avoid using static access at all costs and instead inject dependencies through the constructor. The only case when static access is acceptable is when used for factory methods.

                        Example

                        class Foo
                        {
                            public function bar()
                            {
                                Bar::baz();
                            }
                        }

                        Source https://phpmd.org/rules/cleancode.html#staticaccess

                        The method xoopsmimetypes uses an else expression. Else clauses are basically not necessary and you can simplify the code by not using them.
                        Open

                                } else {
                                    $this->setNew();
                                }
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpmd

                        ElseExpression

                        Since: 1.4.0

                        An if expression with an else branch is basically not necessary. You can rewrite the conditions in a way that the else clause is not necessary and the code becomes simpler to read. To achieve this, use early return statements, though you may need to split the code it several smaller methods. For very simple assignments you could also use the ternary operations.

                        Example

                        class Foo
                        {
                            public function bar($flag)
                            {
                                if ($flag) {
                                    // one branch
                                } else {
                                    // another branch
                                }
                            }
                        }

                        Source https://phpmd.org/rules/cleancode.html#elseexpression

                        The method delete uses an else expression. Else clauses are basically not necessary and you can simplify the code by not using them.
                        Open

                                } else {
                                    $result = $this->db->query($sql);
                                }
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpmd

                        ElseExpression

                        Since: 1.4.0

                        An if expression with an else branch is basically not necessary. You can rewrite the conditions in a way that the else clause is not necessary and the code becomes simpler to read. To achieve this, use early return statements, though you may need to split the code it several smaller methods. For very simple assignments you could also use the ternary operations.

                        Example

                        class Foo
                        {
                            public function bar($flag)
                            {
                                if ($flag) {
                                    // one branch
                                } else {
                                    // another branch
                                }
                            }
                        }

                        Source https://phpmd.org/rules/cleancode.html#elseexpression

                        Avoid using static access to class 'MyTextSanitizer' in method 'mime_types'.
                        Open

                                    $myts = &MyTextSanitizer::getInstance();
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpmd

                        StaticAccess

                        Since: 1.4.0

                        Static access causes unexchangeable dependencies to other classes and leads to hard to test code. Avoid using static access at all costs and instead inject dependencies through the constructor. The only case when static access is acceptable is when used for factory methods.

                        Example

                        class Foo
                        {
                            public function bar()
                            {
                                Bar::baz();
                            }
                        }

                        Source https://phpmd.org/rules/cleancode.html#staticaccess

                        The method insert uses an else expression. Else clauses are basically not necessary and you can simplify the code by not using them.
                        Open

                                } else {
                                    $format = "UPDATE %s SET ";
                                    $format .="mime_ext=%s, mime_types=%s, mime_name=%s, mime_status=%u";
                                    $format .=" WHERE mime_id = %u";
                                    $sql = sprintf($format, $this->db->prefix('mimetypes'),
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpmd

                        ElseExpression

                        Since: 1.4.0

                        An if expression with an else branch is basically not necessary. You can rewrite the conditions in a way that the else clause is not necessary and the code becomes simpler to read. To achieve this, use early return statements, though you may need to split the code it several smaller methods. For very simple assignments you could also use the ternary operations.

                        Example

                        class Foo
                        {
                            public function bar($flag)
                            {
                                if ($flag) {
                                    // one branch
                                } else {
                                    // another branch
                                }
                            }
                        }

                        Source https://phpmd.org/rules/cleancode.html#elseexpression

                        Avoid using static access to class 'MyTextSanitizer' in method 'mime_module'.
                        Open

                                    $myts = &MyTextSanitizer::getInstance();
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpmd

                        StaticAccess

                        Since: 1.4.0

                        Static access causes unexchangeable dependencies to other classes and leads to hard to test code. Avoid using static access at all costs and instead inject dependencies through the constructor. The only case when static access is acceptable is when used for factory methods.

                        Example

                        class Foo
                        {
                            public function bar()
                            {
                                Bar::baz();
                            }
                        }

                        Source https://phpmd.org/rules/cleancode.html#staticaccess

                        Avoid assigning values to variables in if clauses and the like (line '340', column '10').
                        Open

                            function Get_TypeList() {
                                $ret = array();
                                $sql = 'SELECT * FROM ' . $this->db->prefix("mimetypes") ;
                        
                                $result = $this->db->query($sql);
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpmd

                        IfStatementAssignment

                        Since: 2.7.0

                        Assignments in if clauses and the like are considered a code smell. Assignments in PHP return the right operand as their result. In many cases, this is an expected behavior, but can lead to many difficult to spot bugs, especially when the right operand could result in zero, null or an empty string and the like.

                        Example

                        class Foo
                        {
                            public function bar($flag)
                            {
                                if ($foo = 'bar') { // possible typo
                                    // ...
                                }
                                if ($baz = 0) { // always false
                                    // ...
                                }
                            }
                        }

                        Source http://phpmd.org/rules/cleancode.html#ifstatementassignment

                        The method xoopsmimetypes_perms uses an else expression. Else clauses are basically not necessary and you can simplify the code by not using them.
                        Open

                                } else {
                                    $this->setNew();
                                }
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpmd

                        ElseExpression

                        Since: 1.4.0

                        An if expression with an else branch is basically not necessary. You can rewrite the conditions in a way that the else clause is not necessary and the code becomes simpler to read. To achieve this, use early return statements, though you may need to split the code it several smaller methods. For very simple assignments you could also use the ternary operations.

                        Example

                        class Foo
                        {
                            public function bar($flag)
                            {
                                if ($flag) {
                                    // one branch
                                } else {
                                    // another branch
                                }
                            }
                        }

                        Source https://phpmd.org/rules/cleancode.html#elseexpression

                        The method xoopsmimetypes uses an else expression. Else clauses are basically not necessary and you can simplify the code by not using them.
                        Open

                                    } else {
                                        $this->load($mime_id);
                                    }
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpmd

                        ElseExpression

                        Since: 1.4.0

                        An if expression with an else branch is basically not necessary. You can rewrite the conditions in a way that the else clause is not necessary and the code becomes simpler to read. To achieve this, use early return statements, though you may need to split the code it several smaller methods. For very simple assignments you could also use the ternary operations.

                        Example

                        class Foo
                        {
                            public function bar($flag)
                            {
                                if ($flag) {
                                    // one branch
                                } else {
                                    // another branch
                                }
                            }
                        }

                        Source https://phpmd.org/rules/cleancode.html#elseexpression

                        Avoid using static access to class 'MyTextSanitizer' in method 'mime_ext'.
                        Open

                                    $myts = &MyTextSanitizer::getInstance();
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpmd

                        StaticAccess

                        Since: 1.4.0

                        Static access causes unexchangeable dependencies to other classes and leads to hard to test code. Avoid using static access at all costs and instead inject dependencies through the constructor. The only case when static access is acceptable is when used for factory methods.

                        Example

                        class Foo
                        {
                            public function bar()
                            {
                                Bar::baz();
                            }
                        }

                        Source https://phpmd.org/rules/cleancode.html#staticaccess

                        The method get_mimetypes uses an else expression. Else clauses are basically not necessary and you can simplify the code by not using them.
                        Open

                                    } else {
                                        $ret[] = new xoopsmimetypes_perms( $myrow );
                                    }
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpmd

                        ElseExpression

                        Since: 1.4.0

                        An if expression with an else branch is basically not necessary. You can rewrite the conditions in a way that the else clause is not necessary and the code becomes simpler to read. To achieve this, use early return statements, though you may need to split the code it several smaller methods. For very simple assignments you could also use the ternary operations.

                        Example

                        class Foo
                        {
                            public function bar($flag)
                            {
                                if ($flag) {
                                    // one branch
                                } else {
                                    // another branch
                                }
                            }
                        }

                        Source https://phpmd.org/rules/cleancode.html#elseexpression

                        The method delete uses an else expression. Else clauses are basically not necessary and you can simplify the code by not using them.
                        Open

                                } else {
                                    $result = $this->db->query($sql);
                                }
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpmd

                        ElseExpression

                        Since: 1.4.0

                        An if expression with an else branch is basically not necessary. You can rewrite the conditions in a way that the else clause is not necessary and the code becomes simpler to read. To achieve this, use early return statements, though you may need to split the code it several smaller methods. For very simple assignments you could also use the ternary operations.

                        Example

                        class Foo
                        {
                            public function bar($flag)
                            {
                                if ($flag) {
                                    // one branch
                                } else {
                                    // another branch
                                }
                            }
                        }

                        Source https://phpmd.org/rules/cleancode.html#elseexpression

                        The method getHtmlErrors uses an else expression. Else clauses are basically not necessary and you can simplify the code by not using them.
                        Open

                                } else {
                                    $ret .= 'None<br />';
                                }
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpmd

                        ElseExpression

                        Since: 1.4.0

                        An if expression with an else branch is basically not necessary. You can rewrite the conditions in a way that the else clause is not necessary and the code becomes simpler to read. To achieve this, use early return statements, though you may need to split the code it several smaller methods. For very simple assignments you could also use the ternary operations.

                        Example

                        class Foo
                        {
                            public function bar($flag)
                            {
                                if ($flag) {
                                    // one branch
                                } else {
                                    // another branch
                                }
                            }
                        }

                        Source https://phpmd.org/rules/cleancode.html#elseexpression

                        Avoid using static access to class 'Database' in method 'xoopsmimetypes_perms'.
                        Open

                                $this->db = Database::getInstance();
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpmd

                        StaticAccess

                        Since: 1.4.0

                        Static access causes unexchangeable dependencies to other classes and leads to hard to test code. Avoid using static access at all costs and instead inject dependencies through the constructor. The only case when static access is acceptable is when used for factory methods.

                        Example

                        class Foo
                        {
                            public function bar()
                            {
                                Bar::baz();
                            }
                        }

                        Source https://phpmd.org/rules/cleancode.html#staticaccess

                        The method xoopsmimetypes_perms uses an else expression. Else clauses are basically not necessary and you can simplify the code by not using them.
                        Open

                                    } else {
                                        $this->load($mperm_id);
                                    }
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpmd

                        ElseExpression

                        Since: 1.4.0

                        An if expression with an else branch is basically not necessary. You can rewrite the conditions in a way that the else clause is not necessary and the code becomes simpler to read. To achieve this, use early return statements, though you may need to split the code it several smaller methods. For very simple assignments you could also use the ternary operations.

                        Example

                        class Foo
                        {
                            public function bar($flag)
                            {
                                if ($flag) {
                                    // one branch
                                } else {
                                    // another branch
                                }
                            }
                        }

                        Source https://phpmd.org/rules/cleancode.html#elseexpression

                        The method insert uses an else expression. Else clauses are basically not necessary and you can simplify the code by not using them.
                        Open

                                } else {
                                    $result = $this->db->query($sql);
                                }
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpmd

                        ElseExpression

                        Since: 1.4.0

                        An if expression with an else branch is basically not necessary. You can rewrite the conditions in a way that the else clause is not necessary and the code becomes simpler to read. To achieve this, use early return statements, though you may need to split the code it several smaller methods. For very simple assignments you could also use the ternary operations.

                        Example

                        class Foo
                        {
                            public function bar($flag)
                            {
                                if ($flag) {
                                    // one branch
                                } else {
                                    // another branch
                                }
                            }
                        }

                        Source https://phpmd.org/rules/cleancode.html#elseexpression

                        The method get_byExt uses an else expression. Else clauses are basically not necessary and you can simplify the code by not using them.
                        Open

                                    } else {
                                        $ret[] = new xoopsmimetypes( $myrow );
                                    }
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpmd

                        ElseExpression

                        Since: 1.4.0

                        An if expression with an else branch is basically not necessary. You can rewrite the conditions in a way that the else clause is not necessary and the code becomes simpler to read. To achieve this, use early return statements, though you may need to split the code it several smaller methods. For very simple assignments you could also use the ternary operations.

                        Example

                        class Foo
                        {
                            public function bar($flag)
                            {
                                if ($flag) {
                                    // one branch
                                } else {
                                    // another branch
                                }
                            }
                        }

                        Source https://phpmd.org/rules/cleancode.html#elseexpression

                        The method getHtmlErrors uses an else expression. Else clauses are basically not necessary and you can simplify the code by not using them.
                        Open

                                } else {
                                    $ret .= 'None<br />';
                                }
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpmd

                        ElseExpression

                        Since: 1.4.0

                        An if expression with an else branch is basically not necessary. You can rewrite the conditions in a way that the else clause is not necessary and the code becomes simpler to read. To achieve this, use early return statements, though you may need to split the code it several smaller methods. For very simple assignments you could also use the ternary operations.

                        Example

                        class Foo
                        {
                            public function bar($flag)
                            {
                                if ($flag) {
                                    // one branch
                                } else {
                                    // another branch
                                }
                            }
                        }

                        Source https://phpmd.org/rules/cleancode.html#elseexpression

                        The method insert uses an else expression. Else clauses are basically not necessary and you can simplify the code by not using them.
                        Open

                                } else {
                                    $format = "UPDATE %s SET ";
                                    $format .="mperm_mime=%u, mperm_module=%u, mperm_groups=%s, mperm_status=%u, mperm_maxwidth=%u, mperm_maxheight=%u, mperm_maxsize=%u";
                                    $format .=" WHERE mperm_id = %u";
                                    $sql = sprintf($format, $this->db->prefix('mimetypes_perms'),
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpmd

                        ElseExpression

                        Since: 1.4.0

                        An if expression with an else branch is basically not necessary. You can rewrite the conditions in a way that the else clause is not necessary and the code becomes simpler to read. To achieve this, use early return statements, though you may need to split the code it several smaller methods. For very simple assignments you could also use the ternary operations.

                        Example

                        class Foo
                        {
                            public function bar($flag)
                            {
                                if ($flag) {
                                    // one branch
                                } else {
                                    // another branch
                                }
                            }
                        }

                        Source https://phpmd.org/rules/cleancode.html#elseexpression

                        The method deletebyMimeModule uses an else expression. Else clauses are basically not necessary and you can simplify the code by not using them.
                        Open

                                } else {
                                    $result = $this->db->query($sql);
                                }
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpmd

                        ElseExpression

                        Since: 1.4.0

                        An if expression with an else branch is basically not necessary. You can rewrite the conditions in a way that the else clause is not necessary and the code becomes simpler to read. To achieve this, use early return statements, though you may need to split the code it several smaller methods. For very simple assignments you could also use the ternary operations.

                        Example

                        class Foo
                        {
                            public function bar($flag)
                            {
                                if ($flag) {
                                    // one branch
                                } else {
                                    // another branch
                                }
                            }
                        }

                        Source https://phpmd.org/rules/cleancode.html#elseexpression

                        Avoid using static access to class 'MyTextSanitizer' in method 'mime_name'.
                        Open

                                    $myts = &MyTextSanitizer::getInstance();
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpmd

                        StaticAccess

                        Since: 1.4.0

                        Static access causes unexchangeable dependencies to other classes and leads to hard to test code. Avoid using static access at all costs and instead inject dependencies through the constructor. The only case when static access is acceptable is when used for factory methods.

                        Example

                        class Foo
                        {
                            public function bar()
                            {
                                Bar::baz();
                            }
                        }

                        Source https://phpmd.org/rules/cleancode.html#staticaccess

                        The method get_byMimeModule uses an else expression. Else clauses are basically not necessary and you can simplify the code by not using them.
                        Open

                                    } else {
                                        $ret[] = new xoopsmimetypes_perms( $myrow );
                                    }
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpmd

                        ElseExpression

                        Since: 1.4.0

                        An if expression with an else branch is basically not necessary. You can rewrite the conditions in a way that the else clause is not necessary and the code becomes simpler to read. To achieve this, use early return statements, though you may need to split the code it several smaller methods. For very simple assignments you could also use the ternary operations.

                        Example

                        class Foo
                        {
                            public function bar($flag)
                            {
                                if ($flag) {
                                    // one branch
                                } else {
                                    // another branch
                                }
                            }
                        }

                        Source https://phpmd.org/rules/cleancode.html#elseexpression

                        The method deletebyMime uses an else expression. Else clauses are basically not necessary and you can simplify the code by not using them.
                        Open

                                } else {
                                    $result = $this->db->query($sql);
                                }
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpmd

                        ElseExpression

                        Since: 1.4.0

                        An if expression with an else branch is basically not necessary. You can rewrite the conditions in a way that the else clause is not necessary and the code becomes simpler to read. To achieve this, use early return statements, though you may need to split the code it several smaller methods. For very simple assignments you could also use the ternary operations.

                        Example

                        class Foo
                        {
                            public function bar($flag)
                            {
                                if ($flag) {
                                    // one branch
                                } else {
                                    // another branch
                                }
                            }
                        }

                        Source https://phpmd.org/rules/cleancode.html#elseexpression

                        The method deletebyModule uses an else expression. Else clauses are basically not necessary and you can simplify the code by not using them.
                        Open

                                } else {
                                    $result = $this->db->query($sql);
                                }
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpmd

                        ElseExpression

                        Since: 1.4.0

                        An if expression with an else branch is basically not necessary. You can rewrite the conditions in a way that the else clause is not necessary and the code becomes simpler to read. To achieve this, use early return statements, though you may need to split the code it several smaller methods. For very simple assignments you could also use the ternary operations.

                        Example

                        class Foo
                        {
                            public function bar($flag)
                            {
                                if ($flag) {
                                    // one branch
                                } else {
                                    // another branch
                                }
                            }
                        }

                        Source https://phpmd.org/rules/cleancode.html#elseexpression

                        The method insert uses an else expression. Else clauses are basically not necessary and you can simplify the code by not using them.
                        Open

                                } else {
                                    $result = $this->db->query($sql);
                                }
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpmd

                        ElseExpression

                        Since: 1.4.0

                        An if expression with an else branch is basically not necessary. You can rewrite the conditions in a way that the else clause is not necessary and the code becomes simpler to read. To achieve this, use early return statements, though you may need to split the code it several smaller methods. For very simple assignments you could also use the ternary operations.

                        Example

                        class Foo
                        {
                            public function bar($flag)
                            {
                                if ($flag) {
                                    // one branch
                                } else {
                                    // another branch
                                }
                            }
                        }

                        Source https://phpmd.org/rules/cleancode.html#elseexpression

                        Avoid using static access to class 'MyTextSanitizer' in method 'mime_ext'.
                        Open

                                    $myts = &MyTextSanitizer::getInstance();
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpmd

                        StaticAccess

                        Since: 1.4.0

                        Static access causes unexchangeable dependencies to other classes and leads to hard to test code. Avoid using static access at all costs and instead inject dependencies through the constructor. The only case when static access is acceptable is when used for factory methods.

                        Example

                        class Foo
                        {
                            public function bar()
                            {
                                Bar::baz();
                            }
                        }

                        Source https://phpmd.org/rules/cleancode.html#staticaccess

                        Classes should not have a constructor method with the same name as the class
                        Open

                            function xoopsmimetypes_perms ($mperm_id=null) {
                                $this->db = Database::getInstance();
                                $this->initVar('mperm_id',XOBJ_DTYPE_INT,0,true,10);
                                $this->initVar('mperm_mime',XOBJ_DTYPE_INT,0,true,11);
                                $this->initVar('mperm_module'  ,XOBJ_DTYPE_INT,0,true,5);
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpmd

                        ConstructorWithNameAsEnclosingClass

                        Since: 0.2

                        A constructor method should not have the same name as the enclosing class, consider to use the PHP 5 __construct method.

                        Example

                        class MyClass {
                             // this is bad because it is PHP 4 style
                            public function MyClass() {}
                            // this is good because it is a PHP 5 constructor
                            public function __construct() {}
                        }

                        Source https://phpmd.org/rules/naming.html#constructorwithnameasenclosingclass

                        Classes should not have a constructor method with the same name as the class
                        Open

                            function xoopsmimetypes ($mime_id=null) {
                                $this->db = Database::getInstance();
                                $this->initVar('mime_id',XOBJ_DTYPE_INT,0,true,11);
                                $this->initVar('mime_ext',XOBJ_DTYPE_TXTBOX,'',true,10);
                                $this->initVar('mime_types',XOBJ_DTYPE_TXTAREA,'',true,0);
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpmd

                        ConstructorWithNameAsEnclosingClass

                        Since: 0.2

                        A constructor method should not have the same name as the enclosing class, consider to use the PHP 5 __construct method.

                        Example

                        class MyClass {
                             // this is bad because it is PHP 4 style
                            public function MyClass() {}
                            // this is good because it is a PHP 5 constructor
                            public function __construct() {}
                        }

                        Source https://phpmd.org/rules/naming.html#constructorwithnameasenclosingclass

                        Avoid unused parameters such as '$notNullFields'.
                        Open

                            function getCount($criteria = null, $notNullFields='') {
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpmd

                        UnusedFormalParameter

                        Since: 0.2

                        Avoid passing parameters to methods or constructors and then not using those parameters.

                        Example

                        class Foo
                        {
                            private function bar($howdy)
                            {
                                // $howdy is not used
                            }
                        }

                        Source https://phpmd.org/rules/unusedcode.html#unusedformalparameter

                        Avoid unused parameters such as '$notNullFields'.
                        Open

                            function getCount($criteria = null, $notNullFields='') {
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpmd

                        UnusedFormalParameter

                        Since: 0.2

                        Avoid passing parameters to methods or constructors and then not using those parameters.

                        Example

                        class Foo
                        {
                            private function bar($howdy)
                            {
                                // $howdy is not used
                            }
                        }

                        Source https://phpmd.org/rules/unusedcode.html#unusedformalparameter

                        Similar blocks of code found in 2 locations. Consider refactoring.
                        Open

                            function deletebyModule(&$mimetype_object, $force = false) {
                                if (strtolower(get_class($mimetype_object)) != 'xoopsmimetypes_perms') {
                                    return false;
                                }
                        
                        
                        Severity: Major
                        Found in kernel/mimetypes.php and 1 other location - About 4 hrs to fix
                        kernel/mimetypes.php on lines 658..674

                        Duplicated Code

                        Duplicated code can lead to software that is hard to understand and difficult to change. The Don't Repeat Yourself (DRY) principle states:

                        Every piece of knowledge must have a single, unambiguous, authoritative representation within a system.

                        When you violate DRY, bugs and maintenance problems are sure to follow. Duplicated code has a tendency to both continue to replicate and also to diverge (leaving bugs as two similar implementations differ in subtle ways).

                        Tuning

                        This issue has a mass of 167.

                        We set useful threshold defaults for the languages we support but you may want to adjust these settings based on your project guidelines.

                        The threshold configuration represents the minimum mass a code block must have to be analyzed for duplication. The lower the threshold, the more fine-grained the comparison.

                        If the engine is too easily reporting duplication, try raising the threshold. If you suspect that the engine isn't catching enough duplication, try lowering the threshold. The best setting tends to differ from language to language.

                        See codeclimate-duplication's documentation for more information about tuning the mass threshold in your .codeclimate.yml.

                        Refactorings

                        Further Reading

                        Similar blocks of code found in 2 locations. Consider refactoring.
                        Open

                            function deletebyMimeModule(&$mimetype_object, $force = false) {
                                if (strtolower(get_class($mimetype_object)) != 'xoopsmimetypes_perms') {
                                    return false;
                                }
                                $sql = sprintf("DELETE FROM %s WHERE mperm_mime = %u AND mperm_module = %u", $this->db->prefix("mimetypes_perms"), $mimetype_object->getVar('mperm_mime'), $mimetype_object->getVar('mperm_module'));
                        Severity: Major
                        Found in kernel/mimetypes.php and 1 other location - About 4 hrs to fix
                        kernel/mimetypes.php on lines 695..712

                        Duplicated Code

                        Duplicated code can lead to software that is hard to understand and difficult to change. The Don't Repeat Yourself (DRY) principle states:

                        Every piece of knowledge must have a single, unambiguous, authoritative representation within a system.

                        When you violate DRY, bugs and maintenance problems are sure to follow. Duplicated code has a tendency to both continue to replicate and also to diverge (leaving bugs as two similar implementations differ in subtle ways).

                        Tuning

                        This issue has a mass of 167.

                        We set useful threshold defaults for the languages we support but you may want to adjust these settings based on your project guidelines.

                        The threshold configuration represents the minimum mass a code block must have to be analyzed for duplication. The lower the threshold, the more fine-grained the comparison.

                        If the engine is too easily reporting duplication, try raising the threshold. If you suspect that the engine isn't catching enough duplication, try lowering the threshold. The best setting tends to differ from language to language.

                        See codeclimate-duplication's documentation for more information about tuning the mass threshold in your .codeclimate.yml.

                        Refactorings

                        Further Reading

                        Similar blocks of code found in 2 locations. Consider refactoring.
                        Open

                            function delete(&$mimetype_object, $force = false) {
                                if (strtolower(get_class($mimetype_object)) != 'xoopsmimetypes_perms') {
                                    return false;
                                }
                                $sql = sprintf("DELETE FROM %s WHERE mperm_id = %u", $this->db->prefix("mimetypes_perms"), $mimetype_object->getVar('mperm_id'));
                        Severity: Major
                        Found in kernel/mimetypes.php and 1 other location - About 3 hrs to fix
                        kernel/mimetypes.php on lines 676..693

                        Duplicated Code

                        Duplicated code can lead to software that is hard to understand and difficult to change. The Don't Repeat Yourself (DRY) principle states:

                        Every piece of knowledge must have a single, unambiguous, authoritative representation within a system.

                        When you violate DRY, bugs and maintenance problems are sure to follow. Duplicated code has a tendency to both continue to replicate and also to diverge (leaving bugs as two similar implementations differ in subtle ways).

                        Tuning

                        This issue has a mass of 158.

                        We set useful threshold defaults for the languages we support but you may want to adjust these settings based on your project guidelines.

                        The threshold configuration represents the minimum mass a code block must have to be analyzed for duplication. The lower the threshold, the more fine-grained the comparison.

                        If the engine is too easily reporting duplication, try raising the threshold. If you suspect that the engine isn't catching enough duplication, try lowering the threshold. The best setting tends to differ from language to language.

                        See codeclimate-duplication's documentation for more information about tuning the mass threshold in your .codeclimate.yml.

                        Refactorings

                        Further Reading

                        Similar blocks of code found in 2 locations. Consider refactoring.
                        Open

                            function deletebyMime(&$mimetype_object, $force = false) {
                                if (strtolower(get_class($mimetype_object)) != 'xoopsmimetypes_perms') {
                                    return false;
                                }
                                $sql = sprintf("DELETE FROM %s WHERE mperm_mime = %u", $this->db->prefix("mimetypes_perms"), $mimetype_object->getVar('mperm_mime'));
                        Severity: Major
                        Found in kernel/mimetypes.php and 1 other location - About 3 hrs to fix
                        kernel/mimetypes.php on lines 641..656

                        Duplicated Code

                        Duplicated code can lead to software that is hard to understand and difficult to change. The Don't Repeat Yourself (DRY) principle states:

                        Every piece of knowledge must have a single, unambiguous, authoritative representation within a system.

                        When you violate DRY, bugs and maintenance problems are sure to follow. Duplicated code has a tendency to both continue to replicate and also to diverge (leaving bugs as two similar implementations differ in subtle ways).

                        Tuning

                        This issue has a mass of 158.

                        We set useful threshold defaults for the languages we support but you may want to adjust these settings based on your project guidelines.

                        The threshold configuration represents the minimum mass a code block must have to be analyzed for duplication. The lower the threshold, the more fine-grained the comparison.

                        If the engine is too easily reporting duplication, try raising the threshold. If you suspect that the engine isn't catching enough duplication, try lowering the threshold. The best setting tends to differ from language to language.

                        See codeclimate-duplication's documentation for more information about tuning the mass threshold in your .codeclimate.yml.

                        Refactorings

                        Further Reading

                        Identical blocks of code found in 2 locations. Consider refactoring.
                        Open

                                if (isset($criteria) && is_subclass_of($criteria, 'criteriaelement')) {
                                    $sql .= ' '.$criteria->renderWhere();
                                    if ($criteria->getSort() != '') {
                                        $sql .= ' ORDER BY '.$criteria->getSort().' '.$criteria->getOrder();
                                    }
                        Severity: Minor
                        Found in kernel/mimetypes.php and 1 other location - About 35 mins to fix
                        kernel/mimetypes.php on lines 170..178

                        Duplicated Code

                        Duplicated code can lead to software that is hard to understand and difficult to change. The Don't Repeat Yourself (DRY) principle states:

                        Every piece of knowledge must have a single, unambiguous, authoritative representation within a system.

                        When you violate DRY, bugs and maintenance problems are sure to follow. Duplicated code has a tendency to both continue to replicate and also to diverge (leaving bugs as two similar implementations differ in subtle ways).

                        Tuning

                        This issue has a mass of 92.

                        We set useful threshold defaults for the languages we support but you may want to adjust these settings based on your project guidelines.

                        The threshold configuration represents the minimum mass a code block must have to be analyzed for duplication. The lower the threshold, the more fine-grained the comparison.

                        If the engine is too easily reporting duplication, try raising the threshold. If you suspect that the engine isn't catching enough duplication, try lowering the threshold. The best setting tends to differ from language to language.

                        See codeclimate-duplication's documentation for more information about tuning the mass threshold in your .codeclimate.yml.

                        Refactorings

                        Further Reading

                        Identical blocks of code found in 2 locations. Consider refactoring.
                        Open

                                if (isset($criteria) && is_subclass_of($criteria, 'criteriaelement')) {
                                    $sql .= ' '.$criteria->renderWhere();
                                    if ($criteria->getSort() != '') {
                                        $sql .= ' ORDER BY '.$criteria->getSort().' '.$criteria->getOrder();
                                    }
                        Severity: Minor
                        Found in kernel/mimetypes.php and 1 other location - About 35 mins to fix
                        kernel/mimetypes.php on lines 300..307

                        Duplicated Code

                        Duplicated code can lead to software that is hard to understand and difficult to change. The Don't Repeat Yourself (DRY) principle states:

                        Every piece of knowledge must have a single, unambiguous, authoritative representation within a system.

                        When you violate DRY, bugs and maintenance problems are sure to follow. Duplicated code has a tendency to both continue to replicate and also to diverge (leaving bugs as two similar implementations differ in subtle ways).

                        Tuning

                        This issue has a mass of 92.

                        We set useful threshold defaults for the languages we support but you may want to adjust these settings based on your project guidelines.

                        The threshold configuration represents the minimum mass a code block must have to be analyzed for duplication. The lower the threshold, the more fine-grained the comparison.

                        If the engine is too easily reporting duplication, try raising the threshold. If you suspect that the engine isn't catching enough duplication, try lowering the threshold. The best setting tends to differ from language to language.

                        See codeclimate-duplication's documentation for more information about tuning the mass threshold in your .codeclimate.yml.

                        Refactorings

                        Further Reading

                        Each class must be in a namespace of at least one level (a top-level vendor name)
                        Open

                        class XoopsMimetypes extends XoopsObject {
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Each class must be in a namespace of at least one level (a top-level vendor name)
                        Open

                        class XoopsMimetypesHandler extends XoopsObjectHandler {
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Each class must be in a namespace of at least one level (a top-level vendor name)
                        Open

                        class XoopsMimetypes_perms extends XoopsObject {
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Each class must be in a namespace of at least one level (a top-level vendor name)
                        Open

                        class XoopsMimetypes_permsHandler extends XoopsObjectHandler {
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        The parameter $mime_ext is not named in camelCase.
                        Open

                            function get_byExt( $mime_ext, $asobject=true ) {
                                $ret = array();
                                $sql = 'SELECT * FROM ' . $this->db->prefix('mimetypes') . ' WHERE mime_ext = ' . $this->db->quoteString($mime_ext);
                        
                                $result = $this->db->query($sql);
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpmd

                        CamelCaseParameterName

                        Since: 0.2

                        It is considered best practice to use the camelCase notation to name parameters.

                        Example

                        class ClassName {
                            public function doSomething($user_name) {
                            }
                        }

                        Source

                        The parameter $err_str is not named in camelCase.
                        Open

                            function setErrors($err_str) {
                                $this->_errors[] = trim($err_str);
                            }
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpmd

                        CamelCaseParameterName

                        Since: 0.2

                        It is considered best practice to use the camelCase notation to name parameters.

                        Example

                        class ClassName {
                            public function doSomething($user_name) {
                            }
                        }

                        Source

                        The class XoopsMimetypes_perms is not named in CamelCase.
                        Open

                        class XoopsMimetypes_perms extends XoopsObject {
                            var $db;
                        
                            // constructor
                            function xoopsmimetypes_perms ($mperm_id=null) {
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpmd

                        CamelCaseClassName

                        Since: 0.2

                        It is considered best practice to use the CamelCase notation to name classes.

                        Example

                        class class_name {
                        }

                        Source

                        Avoid variables with short names like $db. Configured minimum length is 3.
                        Open

                            var $db;
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpmd

                        ShortVariable

                        Since: 0.2

                        Detects when a field, local, or parameter has a very short name.

                        Example

                        class Something {
                            private $q = 15; // VIOLATION - Field
                            public static function main( array $as ) { // VIOLATION - Formal
                                $r = 20 + $this->q; // VIOLATION - Local
                                for (int $i = 0; $i < 10; $i++) { // Not a Violation (inside FOR)
                                    $r += $this->q;
                                }
                            }
                        }

                        Source https://phpmd.org/rules/naming.html#shortvariable

                        The parameter $mime_id is not named in camelCase.
                        Open

                            function load($mime_id) {
                                $sql = 'SELECT * FROM '.$this->db->prefix('mimetypes').' WHERE mime_id='.$mime_id;
                                $myrow = $this->db->fetchArray($this->db->query($sql));
                                $this->assignVars($myrow);
                                if (!$myrow) {
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpmd

                        CamelCaseParameterName

                        Since: 0.2

                        It is considered best practice to use the camelCase notation to name parameters.

                        Example

                        class ClassName {
                            public function doSomething($user_name) {
                            }
                        }

                        Source

                        The parameter $mime_ext is not named in camelCase.
                        Open

                            function load_byExt($mime_ext) {
                                $sql = 'SELECT * FROM '.$this->db->prefix('mimetypes').' WHERE mime_ext=' . $this->db->quoteString($mime_ext);
                                $myrow = $this->db->fetchArray($this->db->query($sql));
                                $this->assignVars($myrow);
                                if (!$myrow) {
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpmd

                        CamelCaseParameterName

                        Since: 0.2

                        It is considered best practice to use the camelCase notation to name parameters.

                        Example

                        class ClassName {
                            public function doSomething($user_name) {
                            }
                        }

                        Source

                        The parameter $mime_id is not named in camelCase.
                        Open

                            function get_byMimeModule( $mime_id, $mid, $asobject=true) {
                                $ret = array();
                                $sql = 'SELECT * FROM ' . $this->db->prefix('mimetypes_perms') . ' WHERE mperm_mime = ' . $mime_id . ' AND mperm_module = ' . $mid;
                                $result = $this->db->query($sql);
                                if (!$result) {
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpmd

                        CamelCaseParameterName

                        Since: 0.2

                        It is considered best practice to use the camelCase notation to name parameters.

                        Example

                        class ClassName {
                            public function doSomething($user_name) {
                            }
                        }

                        Source

                        The parameter $mimetype_object is not named in camelCase.
                        Open

                            function insert(&$mimetype_object, $force = false) {
                                if (strtolower(get_class($mimetype_object)) != 'xoopsmimetypes_perms') {
                                    return false;
                                }
                                if (!$mimetype_object->isDirty()) {
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpmd

                        CamelCaseParameterName

                        Since: 0.2

                        It is considered best practice to use the camelCase notation to name parameters.

                        Example

                        class ClassName {
                            public function doSomething($user_name) {
                            }
                        }

                        Source

                        The parameter $module_id is not named in camelCase.
                        Open

                            function load($module_id) {
                                $sql = 'SELECT p.*, t.mime_ext, t.mime_name, m.name FROM ' . $this->db->prefix('mimetypes_perms') . ' p LEFT JOIN ' .
                                $this->db->prefix("mimetypes") . ' t on p.mperm_mime = t.mime_id LEFT JOIN ' .
                                $this->db->prefix("modules") . ' m on p.mperm_module = m.mid' . ' WHERE mperm_id=' . $this->db->quoteString($module_id);
                        
                        
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpmd

                        CamelCaseParameterName

                        Since: 0.2

                        It is considered best practice to use the camelCase notation to name parameters.

                        Example

                        class ClassName {
                            public function doSomething($user_name) {
                            }
                        }

                        Source

                        The parameter $mimetype_object is not named in camelCase.
                        Open

                            function deletebyMimeModule(&$mimetype_object, $force = false) {
                                if (strtolower(get_class($mimetype_object)) != 'xoopsmimetypes_perms') {
                                    return false;
                                }
                                $sql = sprintf("DELETE FROM %s WHERE mperm_mime = %u AND mperm_module = %u", $this->db->prefix("mimetypes_perms"), $mimetype_object->getVar('mperm_mime'), $mimetype_object->getVar('mperm_module'));
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpmd

                        CamelCaseParameterName

                        Since: 0.2

                        It is considered best practice to use the camelCase notation to name parameters.

                        Example

                        class ClassName {
                            public function doSomething($user_name) {
                            }
                        }

                        Source

                        The parameter $OtherCriteria is not named in camelCase.
                        Open

                            function get_mimetypes($limit=20, $start=0, $module=-1, $OtherCriteria=null, $asobject=true) {
                                $ret = array();
                                $criteria = new CriteriaCompo();
                                if ( is_object($OtherCriteria) ) {
                                    $criteria->add($OtherCriteria, 'AND');
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpmd

                        CamelCaseParameterName

                        Since: 0.2

                        It is considered best practice to use the camelCase notation to name parameters.

                        Example

                        class ClassName {
                            public function doSomething($user_name) {
                            }
                        }

                        Source

                        The parameter $mimetype_object is not named in camelCase.
                        Open

                            function deletebyMime(&$mimetype_object, $force = false) {
                                if (strtolower(get_class($mimetype_object)) != 'xoopsmimetypes_perms') {
                                    return false;
                                }
                                $sql = sprintf("DELETE FROM %s WHERE mperm_mime = %u", $this->db->prefix("mimetypes_perms"), $mimetype_object->getVar('mperm_mime'));
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpmd

                        CamelCaseParameterName

                        Since: 0.2

                        It is considered best practice to use the camelCase notation to name parameters.

                        Example

                        class ClassName {
                            public function doSomething($user_name) {
                            }
                        }

                        Source

                        The parameter $mime_id is not named in camelCase.
                        Open

                            function xoopsmimetypes ($mime_id=null) {
                                $this->db = Database::getInstance();
                                $this->initVar('mime_id',XOBJ_DTYPE_INT,0,true,11);
                                $this->initVar('mime_ext',XOBJ_DTYPE_TXTBOX,'',true,10);
                                $this->initVar('mime_types',XOBJ_DTYPE_TXTAREA,'',true,0);
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpmd

                        CamelCaseParameterName

                        Since: 0.2

                        It is considered best practice to use the camelCase notation to name parameters.

                        Example

                        class ClassName {
                            public function doSomething($user_name) {
                            }
                        }

                        Source

                        The parameter $mimetype_object is not named in camelCase.
                        Open

                            function delete(&$mimetype_object, $force = false) {
                                if (strtolower(get_class($mimetype_object)) != 'xoopsmimetypes') {
                                    return false;
                                }
                        
                        
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpmd

                        CamelCaseParameterName

                        Since: 0.2

                        It is considered best practice to use the camelCase notation to name parameters.

                        Example

                        class ClassName {
                            public function doSomething($user_name) {
                            }
                        }

                        Source

                        The property $_errors is not named in camelCase.
                        Open

                        class XoopsMimetypes_permsHandler extends XoopsObjectHandler {
                            var $_errors = array();
                        
                            function get_mimetypes($limit=20, $start=0, $module=-1, $OtherCriteria=null, $asobject=true) {
                                $ret = array();
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpmd

                        CamelCasePropertyName

                        Since: 0.2

                        It is considered best practice to use the camelCase notation to name attributes.

                        Example

                        class ClassName {
                            protected $property_name;
                        }

                        Source

                        The class XoopsMimetypes_permsHandler is not named in CamelCase.
                        Open

                        class XoopsMimetypes_permsHandler extends XoopsObjectHandler {
                            var $_errors = array();
                        
                            function get_mimetypes($limit=20, $start=0, $module=-1, $OtherCriteria=null, $asobject=true) {
                                $ret = array();
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpmd

                        CamelCaseClassName

                        Since: 0.2

                        It is considered best practice to use the CamelCase notation to name classes.

                        Example

                        class class_name {
                        }

                        Source

                        The parameter $mimetype_object is not named in camelCase.
                        Open

                            function delete(&$mimetype_object, $force = false) {
                                if (strtolower(get_class($mimetype_object)) != 'xoopsmimetypes_perms') {
                                    return false;
                                }
                                $sql = sprintf("DELETE FROM %s WHERE mperm_id = %u", $this->db->prefix("mimetypes_perms"), $mimetype_object->getVar('mperm_id'));
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpmd

                        CamelCaseParameterName

                        Since: 0.2

                        It is considered best practice to use the camelCase notation to name parameters.

                        Example

                        class ClassName {
                            public function doSomething($user_name) {
                            }
                        }

                        Source

                        The parameter $mimetype_object is not named in camelCase.
                        Open

                            function deletebyModule(&$mimetype_object, $force = false) {
                                if (strtolower(get_class($mimetype_object)) != 'xoopsmimetypes_perms') {
                                    return false;
                                }
                        
                        
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpmd

                        CamelCaseParameterName

                        Since: 0.2

                        It is considered best practice to use the camelCase notation to name parameters.

                        Example

                        class ClassName {
                            public function doSomething($user_name) {
                            }
                        }

                        Source

                        The parameter $err_str is not named in camelCase.
                        Open

                            function setErrors($err_str) {
                                $this->_errors[] = trim($err_str);
                            }
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpmd

                        CamelCaseParameterName

                        Since: 0.2

                        It is considered best practice to use the camelCase notation to name parameters.

                        Example

                        class ClassName {
                            public function doSomething($user_name) {
                            }
                        }

                        Source

                        Avoid variables with short names like $db. Configured minimum length is 3.
                        Open

                            var $db;
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpmd

                        ShortVariable

                        Since: 0.2

                        Detects when a field, local, or parameter has a very short name.

                        Example

                        class Something {
                            private $q = 15; // VIOLATION - Field
                            public static function main( array $as ) { // VIOLATION - Formal
                                $r = 20 + $this->q; // VIOLATION - Local
                                for (int $i = 0; $i < 10; $i++) { // Not a Violation (inside FOR)
                                    $r += $this->q;
                                }
                            }
                        }

                        Source https://phpmd.org/rules/naming.html#shortvariable

                        The parameter $mperm_id is not named in camelCase.
                        Open

                            function xoopsmimetypes_perms ($mperm_id=null) {
                                $this->db = Database::getInstance();
                                $this->initVar('mperm_id',XOBJ_DTYPE_INT,0,true,10);
                                $this->initVar('mperm_mime',XOBJ_DTYPE_INT,0,true,11);
                                $this->initVar('mperm_module'  ,XOBJ_DTYPE_INT,0,true,5);
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpmd

                        CamelCaseParameterName

                        Since: 0.2

                        It is considered best practice to use the camelCase notation to name parameters.

                        Example

                        class ClassName {
                            public function doSomething($user_name) {
                            }
                        }

                        Source

                        The parameter $OtherCriteria is not named in camelCase.
                        Open

                            function get_mimetypes($limit=20, $start=0, $status=-1, $OtherCriteria=null, $sort='mime_ext', $order='ASC', $asobject=true) {
                                $ret = array();
                                $criteria = new CriteriaCompo();
                        
                                if ( is_object($OtherCriteria) ) {
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpmd

                        CamelCaseParameterName

                        Since: 0.2

                        It is considered best practice to use the camelCase notation to name parameters.

                        Example

                        class ClassName {
                            public function doSomething($user_name) {
                            }
                        }

                        Source

                        The parameter $mimetype_object is not named in camelCase.
                        Open

                            function insert(&$mimetype_object, $force = false) {
                                if (strtolower(get_class($mimetype_object)) != 'xoopsmimetypes') {
                                    return false;
                                }
                                if (!$mimetype_object->isDirty()) {
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpmd

                        CamelCaseParameterName

                        Since: 0.2

                        It is considered best practice to use the camelCase notation to name parameters.

                        Example

                        class ClassName {
                            public function doSomething($user_name) {
                            }
                        }

                        Source

                        A file should declare new symbols (classes, functions, constants, etc.) and cause no other side effects, or it should execute logic with side effects, but should not do both. The first symbol is defined on line 42 and the first side effect is on line 37.
                        Open

                        <?php
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Each class must be in a file by itself
                        Open

                        class XoopsMimetypesHandler extends XoopsObjectHandler {
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Each class must be in a file by itself
                        Open

                        class XoopsMimetypes_perms extends XoopsObject {
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Each class must be in a file by itself
                        Open

                        class XoopsMimetypes_permsHandler extends XoopsObjectHandler {
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Visibility must be declared on property "$db"
                        Open

                            var $db;
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Visibility must be declared on method "load"
                        Open

                            function load($mime_id) {
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Expected 0 spaces before closing bracket; 1 found
                        Open

                                    if ( is_array($mime_id) ) {
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Incorrect spacing between default value and equals sign for argument "$mime_id"; expected 1 but found 0
                        Open

                            function xoopsmimetypes ($mime_id=null) {
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Opening brace of a class must be on the line after the definition
                        Open

                        class XoopsMimetypes extends XoopsObject {
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Expected 0 spaces before opening parenthesis; 1 found
                        Open

                            function xoopsmimetypes ($mime_id=null) {
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Incorrect spacing between argument "$mime_id" and equals sign; expected 1 but found 0
                        Open

                            function xoopsmimetypes ($mime_id=null) {
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Visibility must be declared on method "load_byExt"
                        Open

                            function load_byExt($mime_ext) {
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        The var keyword must not be used to declare a property
                        Open

                            var $db;
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Expected "function abc(...)"; found "function abc (...)"
                        Open

                            function xoopsmimetypes ($mime_id=null) {
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Visibility must be declared on method "xoopsmimetypes"
                        Open

                            function xoopsmimetypes ($mime_id=null) {
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Method name "XoopsMimetypes::load_byExt" is not in camel caps format
                        Open

                            function load_byExt($mime_ext) {
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Expected 0 spaces before closing bracket; 1 found
                        Open

                                if ( !empty($mime_id) ) {
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Method name "XoopsMimetypes::mime_ext" is not in camel caps format
                        Open

                            function mime_ext($format='S') {
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Visibility must be declared on method "mime_ext"
                        Open

                            function mime_ext($format='S') {
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Incorrect spacing between default value and equals sign for argument "$start"; expected 1 but found 0
                        Open

                            function get_mimetypes($limit=20, $start=0, $status=-1, $OtherCriteria=null, $sort='mime_ext', $order='ASC', $asobject=true) {
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Incorrect spacing between argument "$OtherCriteria" and equals sign; expected 1 but found 0
                        Open

                            function get_mimetypes($limit=20, $start=0, $status=-1, $OtherCriteria=null, $sort='mime_ext', $order='ASC', $asobject=true) {
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Incorrect spacing between default value and equals sign for argument "$order"; expected 1 but found 0
                        Open

                            function get_mimetypes($limit=20, $start=0, $status=-1, $OtherCriteria=null, $sort='mime_ext', $order='ASC', $asobject=true) {
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Incorrect spacing between argument "$format" and equals sign; expected 1 but found 0
                        Open

                            function mime_name($format='S') {
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Visibility must be declared on method "get_mimetypes"
                        Open

                            function get_mimetypes($limit=20, $start=0, $status=-1, $OtherCriteria=null, $sort='mime_ext', $order='ASC', $asobject=true) {
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Incorrect spacing between argument "$start" and equals sign; expected 1 but found 0
                        Open

                            function get_mimetypes($limit=20, $start=0, $status=-1, $OtherCriteria=null, $sort='mime_ext', $order='ASC', $asobject=true) {
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Expected 0 spaces before closing bracket; 1 found
                        Open

                                if ( isset($status) && (is_array($status)) ) {
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Incorrect spacing between default value and equals sign for argument "$status"; expected 1 but found 0
                        Open

                            function get_mimetypes($limit=20, $start=0, $status=-1, $OtherCriteria=null, $sort='mime_ext', $order='ASC', $asobject=true) {
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Incorrect spacing between default value and equals sign for argument "$asobject"; expected 1 but found 0
                        Open

                            function get_mimetypes($limit=20, $start=0, $status=-1, $OtherCriteria=null, $sort='mime_ext', $order='ASC', $asobject=true) {
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Incorrect spacing between default value and equals sign for argument "$format"; expected 1 but found 0
                        Open

                            function mime_types($format='S') {
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Incorrect spacing between default value and equals sign for argument "$format"; expected 1 but found 0
                        Open

                            function mime_name($format='S') {
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Visibility must be declared on method "get_byExt"
                        Open

                            function get_byExt( $mime_ext, $asobject=true ) {
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Expected 0 spaces between opening bracket and argument "$mime_ext"; 1 found
                        Open

                            function get_byExt( $mime_ext, $asobject=true ) {
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Expected 0 spaces before closing bracket; 1 found
                        Open

                                if ( is_object($OtherCriteria) ) {
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Visibility must be declared on method "create"
                        Open

                            function &create($isNew = true) {
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Incorrect spacing between argument "$status" and equals sign; expected 1 but found 0
                        Open

                            function get_mimetypes($limit=20, $start=0, $status=-1, $OtherCriteria=null, $sort='mime_ext', $order='ASC', $asobject=true) {
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Incorrect spacing between argument "$order" and equals sign; expected 1 but found 0
                        Open

                            function get_mimetypes($limit=20, $start=0, $status=-1, $OtherCriteria=null, $sort='mime_ext', $order='ASC', $asobject=true) {
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Incorrect spacing between argument "$asobject" and equals sign; expected 1 but found 0
                        Open

                            function get_mimetypes($limit=20, $start=0, $status=-1, $OtherCriteria=null, $sort='mime_ext', $order='ASC', $asobject=true) {
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Visibility must be declared on method "mime_id"
                        Open

                            function mime_id() {
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Incorrect spacing between default value and equals sign for argument "$format"; expected 1 but found 0
                        Open

                            function mime_ext($format='S') {
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Visibility must be declared on method "mime_status"
                        Open

                            function mime_status() {
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Opening brace of a class must be on the line after the definition
                        Open

                        class XoopsMimetypesHandler extends XoopsObjectHandler {
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Incorrect spacing between argument "$asobject" and equals sign; expected 1 but found 0
                        Open

                            function get_byExt( $mime_ext, $asobject=true ) {
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Method name "XoopsMimetypes::mime_id" is not in camel caps format
                        Open

                            function mime_id() {
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Visibility must be declared on method "mime_types"
                        Open

                            function mime_types($format='S') {
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Visibility must be declared on method "mime_name"
                        Open

                            function mime_name($format='S') {
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Incorrect spacing between default value and equals sign for argument "$limit"; expected 1 but found 0
                        Open

                            function get_mimetypes($limit=20, $start=0, $status=-1, $OtherCriteria=null, $sort='mime_ext', $order='ASC', $asobject=true) {
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Method name "XoopsMimetypes::mime_status" is not in camel caps format
                        Open

                            function mime_status() {
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Expected 0 spaces before closing bracket; 1 found
                        Open

                                while ( $myrow = $this->db->fetchArray($result) ) {
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Expected 0 spaces before closing bracket; 1 found
                        Open

                                    if ( !$asobject ) {
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Incorrect spacing between default value and equals sign for argument "$asobject"; expected 1 but found 0
                        Open

                            function get_byExt( $mime_ext, $asobject=true ) {
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Incorrect spacing between default value and equals sign for argument "$OtherCriteria"; expected 1 but found 0
                        Open

                            function get_mimetypes($limit=20, $start=0, $status=-1, $OtherCriteria=null, $sort='mime_ext', $order='ASC', $asobject=true) {
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Expected 0 spaces before closing bracket; 1 found
                        Open

                                } elseif ( isset($status) && ($status != -1) ) {
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Method name "XoopsMimetypes::mime_types" is not in camel caps format
                        Open

                            function mime_types($format='S') {
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Method name "XoopsMimetypes::mime_name" is not in camel caps format
                        Open

                            function mime_name($format='S') {
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Method name "XoopsMimetypesHandler::get_mimetypes" is not in camel caps format
                        Open

                            function get_mimetypes($limit=20, $start=0, $status=-1, $OtherCriteria=null, $sort='mime_ext', $order='ASC', $asobject=true) {
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Expected 0 spaces between argument "$asobject" and closing bracket; 1 found
                        Open

                            function get_byExt( $mime_ext, $asobject=true ) {
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Incorrect spacing between argument "$sort" and equals sign; expected 1 but found 0
                        Open

                            function get_mimetypes($limit=20, $start=0, $status=-1, $OtherCriteria=null, $sort='mime_ext', $order='ASC', $asobject=true) {
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Incorrect spacing between default value and equals sign for argument "$sort"; expected 1 but found 0
                        Open

                            function get_mimetypes($limit=20, $start=0, $status=-1, $OtherCriteria=null, $sort='mime_ext', $order='ASC', $asobject=true) {
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Incorrect spacing between argument "$format" and equals sign; expected 1 but found 0
                        Open

                            function mime_types($format='S') {
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Incorrect spacing between argument "$format" and equals sign; expected 1 but found 0
                        Open

                            function mime_ext($format='S') {
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Method name "XoopsMimetypesHandler::get_byExt" is not in camel caps format
                        Open

                            function get_byExt( $mime_ext, $asobject=true ) {
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Incorrect spacing between argument "$limit" and equals sign; expected 1 but found 0
                        Open

                            function get_mimetypes($limit=20, $start=0, $status=-1, $OtherCriteria=null, $sort='mime_ext', $order='ASC', $asobject=true) {
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Incorrect spacing between default value and equals sign for argument "$size"; expected 1 but found 0
                        Open

                            function XoopsFormSelectType( $caption, $name, $value=null, $size=1, $multiple=false ) {
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Visibility must be declared on method "Get_TypeList"
                        Open

                            function Get_TypeList() {
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Space found before comma in function call
                        Open

                                $this->initVar('mperm_status'  ,XOBJ_DTYPE_INT,0,true,1);
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Expected 0 spaces between opening bracket and argument "$caption"; 1 found
                        Open

                            function XoopsFormSelectMime( $caption, $name, $value=null, $size=1, $multiple=false ) {
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Visibility must be declared on method "setErrors"
                        Open

                            function setErrors($err_str) {
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Incorrect spacing between argument "$mperm_id" and equals sign; expected 1 but found 0
                        Open

                            function xoopsmimetypes_perms ($mperm_id=null) {
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Space found before comma in function call
                        Open

                                $this->initVar('mperm_module'  ,XOBJ_DTYPE_INT,0,true,5);
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Incorrect spacing between argument "$value" and equals sign; expected 1 but found 0
                        Open

                            function XoopsFormSelectMime( $caption, $name, $value=null, $size=1, $multiple=false ) {
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Method name "XoopsMimetypesHandler::Get_TypeList" is not in camel caps format
                        Open

                            function Get_TypeList() {
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Expected 0 spaces before opening parenthesis; 1 found
                        Open

                            function xoopsmimetypes_perms ($mperm_id=null) {
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Visibility must be declared on method "getCount"
                        Open

                            function getCount($criteria = null, $notNullFields='') {
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Visibility must be declared on method "insert"
                        Open

                            function insert(&$mimetype_object, $force = false) {
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Incorrect spacing between argument "$multiple" and equals sign; expected 1 but found 0
                        Open

                            function XoopsFormSelectType( $caption, $name, $value=null, $size=1, $multiple=false ) {
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Expected 0 spaces before closing bracket; 1 found
                        Open

                                    if ( !$asobject ) {
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Incorrect spacing between default value and equals sign for argument "$notNullFields"; expected 1 but found 0
                        Open

                            function getCount($criteria = null, $notNullFields='') {
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Method name "XoopsMimetypesHandler::GetSelectList" is not in camel caps format
                        Open

                            function &GetSelectList($criteria = null) {
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Expected 0 spaces between opening bracket and argument "$caption"; 1 found
                        Open

                            function XoopsFormSelectType( $caption, $name, $value=null, $size=1, $multiple=false ) {
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Incorrect spacing between default value and equals sign for argument "$value"; expected 1 but found 0
                        Open

                            function XoopsFormSelectType( $caption, $name, $value=null, $size=1, $multiple=false ) {
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Visibility must be declared on property "$db"
                        Open

                            var $db;
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Space found before comma in function call
                        Open

                                $this->initVar('mperm_groups'  ,XOBJ_DTYPE_TXTAREA,'',false,0);
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Incorrect spacing between argument "$notNullFields" and equals sign; expected 1 but found 0
                        Open

                            function getCount($criteria = null, $notNullFields='') {
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Expected 0 spaces before closing bracket; 1 found
                        Open

                                        if ( $type = substr( $mime_type, 0, strpos($mime_type, '/') ) ) {
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Incorrect spacing between default value and equals sign for argument "$mperm_id"; expected 1 but found 0
                        Open

                            function xoopsmimetypes_perms ($mperm_id=null) {
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Expected 0 spaces before closing bracket; 1 found
                        Open

                                while ( $myrow = $this->db->fetchArray($result) ) {
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Space found before comma in function call
                        Open

                                $this->initVar('mperm_maxwidth'  ,XOBJ_DTYPE_INT,0,true,4);
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Method name "XoopsMimetypesHandler::XoopsFormSelectMime" is not in camel caps format
                        Open

                            function XoopsFormSelectMime( $caption, $name, $value=null, $size=1, $multiple=false ) {
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Visibility must be declared on method "XoopsFormSelectMime"
                        Open

                            function XoopsFormSelectMime( $caption, $name, $value=null, $size=1, $multiple=false ) {
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Method name "XoopsMimetypesHandler::XoopsFormSelectType" is not in camel caps format
                        Open

                            function XoopsFormSelectType( $caption, $name, $value=null, $size=1, $multiple=false ) {
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Expected 0 spaces between argument "$multiple" and closing bracket; 1 found
                        Open

                            function XoopsFormSelectType( $caption, $name, $value=null, $size=1, $multiple=false ) {
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Expected 0 spaces before closing bracket; 1 found
                        Open

                                            if ( !in_array ($type, $ret) ) {
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Opening brace of a class must be on the line after the definition
                        Open

                        class XoopsMimetypes_perms extends XoopsObject {
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Method name "XoopsMimetypes_perms::xoopsmimetypes_perms" is not in camel caps format
                        Open

                            function xoopsmimetypes_perms ($mperm_id=null) {
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Incorrect spacing between argument "$multiple" and equals sign; expected 1 but found 0
                        Open

                            function XoopsFormSelectMime( $caption, $name, $value=null, $size=1, $multiple=false ) {
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        The var keyword must not be used to declare a property
                        Open

                            var $db;
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Incorrect spacing between default value and equals sign for argument "$size"; expected 1 but found 0
                        Open

                            function XoopsFormSelectMime( $caption, $name, $value=null, $size=1, $multiple=false ) {
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Incorrect spacing between argument "$size" and equals sign; expected 1 but found 0
                        Open

                            function XoopsFormSelectType( $caption, $name, $value=null, $size=1, $multiple=false ) {
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Visibility must be declared on method "getHtmlErrors"
                        Open

                            function getHtmlErrors() {
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Empty lines are not allowed in multi-line function calls
                        Open

                        
                        
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Visibility must be declared on method "XoopsFormSelectType"
                        Open

                            function XoopsFormSelectType( $caption, $name, $value=null, $size=1, $multiple=false ) {
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Space found before closing bracket of FOREACH loop
                        Open

                                    foreach ( $mime_types as $mime_type ) {
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Expected "function abc(...)"; found "function abc (...)"
                        Open

                            function xoopsmimetypes_perms ($mperm_id=null) {
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Space found before comma in function call
                        Open

                                    $sql = sprintf($format ,
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Expected 0 spaces before closing bracket; 1 found
                        Open

                                while ( $myrow = $this->db->fetchArray($result) ) {
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Incorrect spacing between default value and equals sign for argument "$value"; expected 1 but found 0
                        Open

                            function XoopsFormSelectMime( $caption, $name, $value=null, $size=1, $multiple=false ) {
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Expected 0 spaces before closing bracket; 1 found
                        Open

                                    foreach ( $mime_types as $mime_type ) {
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Visibility must be declared on method "GetSelectList"
                        Open

                            function &GetSelectList($criteria = null) {
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Incorrect spacing between default value and equals sign for argument "$multiple"; expected 1 but found 0
                        Open

                            function XoopsFormSelectType( $caption, $name, $value=null, $size=1, $multiple=false ) {
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Space found after opening bracket of FOREACH loop
                        Open

                                    foreach ( $mime_types as $mime_type ) {
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Visibility must be declared on method "delete"
                        Open

                            function delete(&$mimetype_object, $force = false) {
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Incorrect spacing between argument "$size" and equals sign; expected 1 but found 0
                        Open

                            function XoopsFormSelectMime( $caption, $name, $value=null, $size=1, $multiple=false ) {
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Incorrect spacing between default value and equals sign for argument "$multiple"; expected 1 but found 0
                        Open

                            function XoopsFormSelectMime( $caption, $name, $value=null, $size=1, $multiple=false ) {
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Expected 0 spaces between argument "$multiple" and closing bracket; 1 found
                        Open

                            function XoopsFormSelectMime( $caption, $name, $value=null, $size=1, $multiple=false ) {
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Incorrect spacing between argument "$value" and equals sign; expected 1 but found 0
                        Open

                            function XoopsFormSelectType( $caption, $name, $value=null, $size=1, $multiple=false ) {
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Visibility must be declared on method "xoopsmimetypes_perms"
                        Open

                            function xoopsmimetypes_perms ($mperm_id=null) {
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Visibility must be declared on method "mime_module"
                        Open

                            function mime_module($format='S') {
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Visibility must be declared on method "mime_name"
                        Open

                            function mime_name($format='S') {
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Visibility must be declared on method "mperm_maxsize"
                        Open

                            function mperm_maxsize() {
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Visibility must be declared on method "mperm_status"
                        Open

                            function mperm_status() {
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Method name "XoopsMimetypes_perms::mperm_mime" is not in camel caps format
                        Open

                            function mperm_mime() {
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Space found before comma in function call
                        Open

                                $this->initVar('mperm_maxsize'  ,XOBJ_DTYPE_INT,0,true,8);
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Expected 0 spaces before closing bracket; 1 found
                        Open

                                if ( !empty($mperm_id) ) {
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Visibility must be declared on method "mime_id"
                        Open

                            function mime_id() {
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Method name "XoopsMimetypes_perms::mperm_maxwidth" is not in camel caps format
                        Open

                            function mperm_maxwidth() {
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Method name "XoopsMimetypes_perms::mperm_status" is not in camel caps format
                        Open

                            function mperm_status() {
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Incorrect spacing between default value and equals sign for argument "$format"; expected 1 but found 0
                        Open

                            function mime_ext($format='S') {
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Incorrect spacing between default value and equals sign for argument "$format"; expected 1 but found 0
                        Open

                            function mime_module($format='S') {
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Method name "XoopsMimetypes_perms::mime_groups" is not in camel caps format
                        Open

                            function mime_groups() {
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Method name "XoopsMimetypes_perms::mperm_maxheight" is not in camel caps format
                        Open

                            function mperm_maxheight() {
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Incorrect spacing between default value and equals sign for argument "$format"; expected 1 but found 0
                        Open

                            function mime_name($format='S') {
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Method name "XoopsMimetypes_perms::mperm_module" is not in camel caps format
                        Open

                            function mperm_module() {
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Visibility must be declared on method "mime_ext"
                        Open

                            function mime_ext($format='S') {
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Method name "XoopsMimetypes_perms::mime_module" is not in camel caps format
                        Open

                            function mime_module($format='S') {
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Incorrect spacing between argument "$format" and equals sign; expected 1 but found 0
                        Open

                            function mime_ext($format='S') {
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Incorrect spacing between argument "$format" and equals sign; expected 1 but found 0
                        Open

                            function mime_module($format='S') {
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Incorrect spacing between argument "$format" and equals sign; expected 1 but found 0
                        Open

                            function mime_name($format='S') {
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Method name "XoopsMimetypes_perms::mime_name" is not in camel caps format
                        Open

                            function mime_name($format='S') {
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Visibility must be declared on method "mperm_maxheight"
                        Open

                            function mperm_maxheight() {
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Visibility must be declared on method "mime_groups"
                        Open

                            function mime_groups() {
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Method name "XoopsMimetypes_perms::mperm_maxsize" is not in camel caps format
                        Open

                            function mperm_maxsize() {
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Visibility must be declared on method "GetGroups"
                        Open

                            function GetGroups() {
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Method name "XoopsMimetypes_perms::GetGroups" is not in camel caps format
                        Open

                            function GetGroups() {
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Method name "XoopsMimetypes_perms::mime_id" is not in camel caps format
                        Open

                            function mime_id() {
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Visibility must be declared on method "mperm_module"
                        Open

                            function mperm_module() {
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Visibility must be declared on method "load"
                        Open

                            function load($module_id) {
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Visibility must be declared on method "mperm_mime"
                        Open

                            function mperm_mime() {
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Method name "XoopsMimetypes_perms::mime_ext" is not in camel caps format
                        Open

                            function mime_ext($format='S') {
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Expected 0 spaces before closing bracket; 1 found
                        Open

                                    if ( is_array($mperm_id) ) {
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Visibility must be declared on method "mperm_maxwidth"
                        Open

                            function mperm_maxwidth() {
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Expected 0 spaces before closing bracket; 1 found
                        Open

                                while ( $myrow = $this->db->fetchArray($result) ) {
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Method name "XoopsMimetypes_permsHandler::mime_module" is not in camel caps format
                        Open

                            function mime_module( $mid ) {
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Opening brace of a class must be on the line after the definition
                        Open

                        class XoopsMimetypes_permsHandler extends XoopsObjectHandler {
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Incorrect spacing between argument "$asobject" and equals sign; expected 1 but found 0
                        Open

                            function get_byMimeModule( $mime_id, $mid, $asobject=true) {
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        The var keyword must not be used to declare a property
                        Open

                            var $_errors = array();
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Incorrect spacing between argument "$OtherCriteria" and equals sign; expected 1 but found 0
                        Open

                            function get_mimetypes($limit=20, $start=0, $module=-1, $OtherCriteria=null, $asobject=true) {
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Incorrect spacing between default value and equals sign for argument "$asobject"; expected 1 but found 0
                        Open

                            function get_mimetypes($limit=20, $start=0, $module=-1, $OtherCriteria=null, $asobject=true) {
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Expected 0 spaces before closing bracket; 1 found
                        Open

                                if ( isset($module) && (is_array($module)) ) {
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Expected 0 spaces between opening bracket and argument "$mime_id"; 1 found
                        Open

                            function get_byMimeModule( $mime_id, $mid, $asobject=true) {
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Visibility must be declared on method "mime_module"
                        Open

                            function mime_module( $mid ) {
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Visibility must be declared on property "$_errors"
                        Open

                            var $_errors = array();
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Method name "XoopsMimetypes_permsHandler::get_mimetypes" is not in camel caps format
                        Open

                            function get_mimetypes($limit=20, $start=0, $module=-1, $OtherCriteria=null, $asobject=true) {
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Visibility must be declared on method "get_mimetypes"
                        Open

                            function get_mimetypes($limit=20, $start=0, $module=-1, $OtherCriteria=null, $asobject=true) {
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Visibility must be declared on method "getCount"
                        Open

                            function getCount($criteria = null, $notNullFields='') {
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Incorrect spacing between default value and equals sign for argument "$notNullFields"; expected 1 but found 0
                        Open

                            function getCount($criteria = null, $notNullFields='') {
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Incorrect spacing between argument "$start" and equals sign; expected 1 but found 0
                        Open

                            function get_mimetypes($limit=20, $start=0, $module=-1, $OtherCriteria=null, $asobject=true) {
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Incorrect spacing between default value and equals sign for argument "$asobject"; expected 1 but found 0
                        Open

                            function get_byMimeModule( $mime_id, $mid, $asobject=true) {
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Expected 0 spaces before closing bracket; 1 found
                        Open

                                if ( is_object($OtherCriteria) ) {
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Expected 0 spaces before closing bracket; 1 found
                        Open

                                    if ( !$asobject ) {
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Incorrect spacing between argument "$notNullFields" and equals sign; expected 1 but found 0
                        Open

                            function getCount($criteria = null, $notNullFields='') {
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Incorrect spacing between default value and equals sign for argument "$limit"; expected 1 but found 0
                        Open

                            function get_mimetypes($limit=20, $start=0, $module=-1, $OtherCriteria=null, $asobject=true) {
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Expected 0 spaces between argument "$mid" and closing bracket; 1 found
                        Open

                            function mime_module( $mid ) {
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Incorrect spacing between default value and equals sign for argument "$start"; expected 1 but found 0
                        Open

                            function get_mimetypes($limit=20, $start=0, $module=-1, $OtherCriteria=null, $asobject=true) {
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Incorrect spacing between argument "$module" and equals sign; expected 1 but found 0
                        Open

                            function get_mimetypes($limit=20, $start=0, $module=-1, $OtherCriteria=null, $asobject=true) {
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Incorrect spacing between default value and equals sign for argument "$OtherCriteria"; expected 1 but found 0
                        Open

                            function get_mimetypes($limit=20, $start=0, $module=-1, $OtherCriteria=null, $asobject=true) {
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Expected 0 spaces between opening bracket and argument "$mid"; 1 found
                        Open

                            function mime_module( $mid ) {
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Incorrect spacing between argument "$asobject" and equals sign; expected 1 but found 0
                        Open

                            function get_mimetypes($limit=20, $start=0, $module=-1, $OtherCriteria=null, $asobject=true) {
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Expected 0 spaces before closing bracket; 1 found
                        Open

                                while ( $myrow = $this->db->fetchArray($result) ) {
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Property name "$_errors" should not be prefixed with an underscore to indicate visibility
                        Open

                            var $_errors = array();
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Expected 0 spaces before closing bracket; 1 found
                        Open

                                    if ( !$asobject ) {
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Incorrect spacing between argument "$limit" and equals sign; expected 1 but found 0
                        Open

                            function get_mimetypes($limit=20, $start=0, $module=-1, $OtherCriteria=null, $asobject=true) {
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Expected 0 spaces before closing bracket; 1 found
                        Open

                                } elseif ( isset($module) && ($module != -1) ) {
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Expected 0 spaces before closing bracket; 1 found
                        Open

                                while ( $myrow = $this->db->fetchArray($result) ) {
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Method name "XoopsMimetypes_permsHandler::get_byMimeModule" is not in camel caps format
                        Open

                            function get_byMimeModule( $mime_id, $mid, $asobject=true) {
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Incorrect spacing between default value and equals sign for argument "$module"; expected 1 but found 0
                        Open

                            function get_mimetypes($limit=20, $start=0, $module=-1, $OtherCriteria=null, $asobject=true) {
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Visibility must be declared on method "get_byMimeModule"
                        Open

                            function get_byMimeModule( $mime_id, $mid, $asobject=true) {
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Space found before comma in function call
                        Open

                                    $sql = sprintf($format ,
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Visibility must be declared on method "insert"
                        Open

                            function insert(&$mimetype_object, $force = false) {
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Visibility must be declared on method "delete"
                        Open

                            function delete(&$mimetype_object, $force = false) {
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Visibility must be declared on method "deletebyModule"
                        Open

                            function deletebyModule(&$mimetype_object, $force = false) {
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Visibility must be declared on method "deletebyMimeModule"
                        Open

                            function deletebyMimeModule(&$mimetype_object, $force = false) {
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Visibility must be declared on method "deletebyMime"
                        Open

                            function deletebyMime(&$mimetype_object, $force = false) {
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Visibility must be declared on method "getHtmlErrors"
                        Open

                            function getHtmlErrors() {
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Expected 0 spaces between opening bracket and argument "$mid"; 1 found
                        Open

                            function allowedMimeTypes( $mid, $groups, $allowedMimeTypes ) {
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Expected 0 spaces between argument "$allowedMimeTypes" and closing bracket; 1 found
                        Open

                            function allowedMimeTypes( $mid, $groups, $allowedMimeTypes ) {
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Visibility must be declared on method "setErrors"
                        Open

                            function setErrors($err_str) {
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Visibility must be declared on method "allowedMimeTypes"
                        Open

                            function allowedMimeTypes( $mid, $groups, $allowedMimeTypes ) {
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Expected 0 spaces before closing bracket; 1 found
                        Open

                                if ( count($ret) == 0 ) {
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Expected 0 spaces before closing bracket; 1 found
                        Open

                                while ( $myrow = $this->db->fetchArray($result) ) {
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Only one argument is allowed per line in a multi-line function call
                        Open

                                    $sql = sprintf($format, $this->db->prefix('mimetypes'),
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Only one argument is allowed per line in a multi-line function call
                        Open

                                    $sql = sprintf($format, $this->db->prefix('mimetypes_perms'),
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Spaces must be used to indent lines; tabs are not allowed
                        Open

                                $this->initVar('mime_id',XOBJ_DTYPE_INT,0,true,11);
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Spaces must be used to indent lines; tabs are not allowed
                        Open

                                    } else {
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Spaces must be used to indent lines; tabs are not allowed
                        Open

                            }
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Spaces must be used to indent lines; tabs are not allowed
                        Open

                                }
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Spaces must be used to indent lines; tabs are not allowed
                        Open

                                $this->db = Database::getInstance();
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Spaces must be used to indent lines; tabs are not allowed
                        Open

                                $this->initVar('mime_status',XOBJ_DTYPE_INT,0,true,1);
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Spaces must be used to indent lines; tabs are not allowed
                        Open

                                } else {
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Spaces must be used to indent lines; tabs are not allowed
                        Open

                            var $db;
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Spaces must be used to indent lines; tabs are not allowed
                        Open

                                $myrow = $this->db->fetchArray($this->db->query($sql));
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Spaces must be used to indent lines; tabs are not allowed
                        Open

                                }
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Spaces must be used to indent lines; tabs are not allowed
                        Open

                                $this->initVar('mime_ext',XOBJ_DTYPE_TXTBOX,'',true,10);
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Spaces must be used to indent lines; tabs are not allowed
                        Open

                                    }
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Spaces must be used to indent lines; tabs are not allowed
                        Open

                            }
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Spaces must be used to indent lines; tabs are not allowed
                        Open

                            // constructor
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Spaces must be used to indent lines; tabs are not allowed
                        Open

                                        $this->load($mime_id);
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Spaces must be used to indent lines; tabs are not allowed
                        Open

                                $this->initVar('mime_name',XOBJ_DTYPE_TXTBOX,'',true,255);
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Spaces must be used to indent lines; tabs are not allowed
                        Open

                            function load_byExt($mime_ext) {
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Spaces must be used to indent lines; tabs are not allowed
                        Open

                            function xoopsmimetypes ($mime_id=null) {
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Spaces must be used to indent lines; tabs are not allowed
                        Open

                                if ( !empty($mime_id) ) {
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Spaces must be used to indent lines; tabs are not allowed
                        Open

                                        $this->assignVars($mime_id);
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Spaces must be used to indent lines; tabs are not allowed
                        Open

                            function load($mime_id) {
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Spaces must be used to indent lines; tabs are not allowed
                        Open

                                if (!$myrow) {
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Spaces must be used to indent lines; tabs are not allowed
                        Open

                                    if ( is_array($mime_id) ) {
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Spaces must be used to indent lines; tabs are not allowed
                        Open

                                $sql = 'SELECT * FROM '.$this->db->prefix('mimetypes').' WHERE mime_id='.$mime_id;
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Spaces must be used to indent lines; tabs are not allowed
                        Open

                                    $this->setNew();
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Spaces must be used to indent lines; tabs are not allowed
                        Open

                                    $this->setNew();
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Spaces must be used to indent lines; tabs are not allowed
                        Open

                                $this->assignVars($myrow);
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Spaces must be used to indent lines; tabs are not allowed
                        Open

                                $this->initVar('mime_types',XOBJ_DTYPE_TXTAREA,'',true,0);
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Spaces must be used to indent lines; tabs are not allowed
                        Open

                                if (!$result) {
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Spaces must be used to indent lines; tabs are not allowed
                        Open

                                    return $ret;
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Spaces must be used to indent lines; tabs are not allowed
                        Open

                                }
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Spaces must be used to indent lines; tabs are not allowed
                        Open

                            function get_mimetypes($limit=20, $start=0, $status=-1, $OtherCriteria=null, $sort='mime_ext', $order='ASC', $asobject=true) {
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Spaces must be used to indent lines; tabs are not allowed
                        Open

                                }
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Spaces must be used to indent lines; tabs are not allowed
                        Open

                            }
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Spaces must be used to indent lines; tabs are not allowed
                        Open

                                $sql = 'SELECT * FROM '.$this->db->prefix('mimetypes').' WHERE mime_ext=' . $this->db->quoteString($mime_ext);
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Spaces must be used to indent lines; tabs are not allowed
                        Open

                                    }
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Spaces must be used to indent lines; tabs are not allowed
                        Open

                                $this->assignVars($myrow);
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Spaces must be used to indent lines; tabs are not allowed
                        Open

                            }
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Spaces must be used to indent lines; tabs are not allowed
                        Open

                                }
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Spaces must be used to indent lines; tabs are not allowed
                        Open

                            function &create($isNew = true) {
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Spaces must be used to indent lines; tabs are not allowed
                        Open

                                if ($isNew) {
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Spaces must be used to indent lines; tabs are not allowed
                        Open

                                        $ret[$myrow['mime_id']] = $myrow;
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Spaces must be used to indent lines; tabs are not allowed
                        Open

                                return $ret;
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Spaces must be used to indent lines; tabs are not allowed
                        Open

                                    $criteria->add(new Criteria('mime_status', $status), 'AND');
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Spaces must be used to indent lines; tabs are not allowed
                        Open

                                $ret = array();
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Spaces must be used to indent lines; tabs are not allowed
                        Open

                                if (!$myrow) {
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Spaces must be used to indent lines; tabs are not allowed
                        Open

                                    $ret = $myts->displayTarea($ret);
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Spaces must be used to indent lines; tabs are not allowed
                        Open

                            }
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Spaces must be used to indent lines; tabs are not allowed
                        Open

                                }
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Spaces must be used to indent lines; tabs are not allowed
                        Open

                            }
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Spaces must be used to indent lines; tabs are not allowed
                        Open

                                return $tplfile;
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Spaces must be used to indent lines; tabs are not allowed
                        Open

                                    if ( !$asobject ) {
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Spaces must be used to indent lines; tabs are not allowed
                        Open

                            function mime_types($format='S') {
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Spaces must be used to indent lines; tabs are not allowed
                        Open

                                    $myts = &MyTextSanitizer::getInstance();
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Spaces must be used to indent lines; tabs are not allowed
                        Open

                                        $criteria->add(new Criteria('mime_status', $v), 'AND');
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Spaces must be used to indent lines; tabs are not allowed
                        Open

                            function mime_name($format='S') {
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Spaces must be used to indent lines; tabs are not allowed
                        Open

                                $criteria->setStart($start);
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Spaces must be used to indent lines; tabs are not allowed
                        Open

                                }
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Spaces must be used to indent lines; tabs are not allowed
                        Open

                                return $ret;
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Spaces must be used to indent lines; tabs are not allowed
                        Open

                                $result = $this->db->query($sql);
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Spaces must be used to indent lines; tabs are not allowed
                        Open

                                    } else {
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Spaces must be used to indent lines; tabs are not allowed
                        Open

                                $sql = 'SELECT * FROM '.$this->db->prefix('mimetypes');
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Spaces must be used to indent lines; tabs are not allowed
                        Open

                            function mime_id() {
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Spaces must be used to indent lines; tabs are not allowed
                        Open

                                return $this->getVar('mime_id');
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Spaces must be used to indent lines; tabs are not allowed
                        Open

                            }
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Spaces must be used to indent lines; tabs are not allowed
                        Open

                                $tplfile = new XoopsTplfile();
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Spaces must be used to indent lines; tabs are not allowed
                        Open

                                    $tplfile->setNew();
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Spaces must be used to indent lines; tabs are not allowed
                        Open

                                $ret = array();
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Spaces must be used to indent lines; tabs are not allowed
                        Open

                                $criteria = new CriteriaCompo();
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Spaces must be used to indent lines; tabs are not allowed
                        Open

                                    $limit = $criteria->getLimit();
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Spaces must be used to indent lines; tabs are not allowed
                        Open

                                $myrow = $this->db->fetchArray($this->db->query($sql));
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Spaces must be used to indent lines; tabs are not allowed
                        Open

                                $ret = $this->getVar('mime_ext', $format);
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Spaces must be used to indent lines; tabs are not allowed
                        Open

                                if ( is_object($OtherCriteria) ) {
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Spaces must be used to indent lines; tabs are not allowed
                        Open

                            function mime_ext($format='S') {
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Spaces must be used to indent lines; tabs are not allowed
                        Open

                                $criteria->setOrder($order);
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Spaces must be used to indent lines; tabs are not allowed
                        Open

                                if (isset($criteria) && is_subclass_of($criteria, 'criteriaelement')) {
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Spaces must be used to indent lines; tabs are not allowed
                        Open

                                    if ($criteria->getSort() != '') {
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Spaces must be used to indent lines; tabs are not allowed
                        Open

                                        $sql .= ' ORDER BY '.$criteria->getSort().' '.$criteria->getOrder();
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Spaces must be used to indent lines; tabs are not allowed
                        Open

                                    $this->setNew();
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Spaces must be used to indent lines; tabs are not allowed
                        Open

                                    $myts = &MyTextSanitizer::getInstance();
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Spaces must be used to indent lines; tabs are not allowed
                        Open

                                return $ret;
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Spaces must be used to indent lines; tabs are not allowed
                        Open

                                $ret = $this->getVar('mime_name', $format);
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Spaces must be used to indent lines; tabs are not allowed
                        Open

                                    $myts = &MyTextSanitizer::getInstance();
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Spaces must be used to indent lines; tabs are not allowed
                        Open

                                return $this->getVar('mime_status');
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Line exceeds 120 characters; contains 124 characters
                        Open

                                $sql = 'SELECT * FROM ' . $this->db->prefix('mimetypes') . ' WHERE mime_ext = ' . $this->db->quoteString($mime_ext);
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Spaces must be used to indent lines; tabs are not allowed
                        Open

                                if ( isset($status) && (is_array($status)) ) {
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Spaces must be used to indent lines; tabs are not allowed
                        Open

                            }
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Spaces must be used to indent lines; tabs are not allowed
                        Open

                            function mime_status() {
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Spaces must be used to indent lines; tabs are not allowed
                        Open

                            function get_byExt( $mime_ext, $asobject=true ) {
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Spaces must be used to indent lines; tabs are not allowed
                        Open

                                $sql = 'SELECT * FROM ' . $this->db->prefix('mimetypes') . ' WHERE mime_ext = ' . $this->db->quoteString($mime_ext);
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Spaces must be used to indent lines; tabs are not allowed
                        Open

                                    $criteria->add($OtherCriteria, 'AND');
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Spaces must be used to indent lines; tabs are not allowed
                        Open

                            }
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Spaces must be used to indent lines; tabs are not allowed
                        Open

                                if (($format=='s') || ($format=='S') || ($format=='show')) {
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Spaces must be used to indent lines; tabs are not allowed
                        Open

                                $ret = $this->getVar('mime_types', $format);
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Spaces must be used to indent lines; tabs are not allowed
                        Open

                                if (($format=='s') || ($format=='S') || ($format=='show')) {
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Spaces must be used to indent lines; tabs are not allowed
                        Open

                                    }
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Spaces must be used to indent lines; tabs are not allowed
                        Open

                                return $ret;
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Spaces must be used to indent lines; tabs are not allowed
                        Open

                                        $ret[] = new xoopsmimetypes( $myrow );
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Spaces must be used to indent lines; tabs are not allowed
                        Open

                                }
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Spaces must be used to indent lines; tabs are not allowed
                        Open

                                $criteria->setLimit($limit);
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Spaces must be used to indent lines; tabs are not allowed
                        Open

                                $criteria->setSort($sort);
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Spaces must be used to indent lines; tabs are not allowed
                        Open

                                    $start = $criteria->getStart();
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Spaces must be used to indent lines; tabs are not allowed
                        Open

                                    $ret = $myts->displayTarea($ret);
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Spaces must be used to indent lines; tabs are not allowed
                        Open

                                    foreach ($status as $v) {
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Spaces must be used to indent lines; tabs are not allowed
                        Open

                                    $ret = $myts->displayTarea($ret);
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Spaces must be used to indent lines; tabs are not allowed
                        Open

                                }
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Spaces must be used to indent lines; tabs are not allowed
                        Open

                                if (($format=='s') || ($format=='S') || ($format=='show')) {
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Spaces must be used to indent lines; tabs are not allowed
                        Open

                            }
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Spaces must be used to indent lines; tabs are not allowed
                        Open

                                }
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Spaces must be used to indent lines; tabs are not allowed
                        Open

                                while ( $myrow = $this->db->fetchArray($result) ) {
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Line exceeds 120 characters; contains 130 characters
                        Open

                            function get_mimetypes($limit=20, $start=0, $status=-1, $OtherCriteria=null, $sort='mime_ext', $order='ASC', $asobject=true) {
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Spaces must be used to indent lines; tabs are not allowed
                        Open

                                }
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Spaces must be used to indent lines; tabs are not allowed
                        Open

                                    }
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Spaces must be used to indent lines; tabs are not allowed
                        Open

                                    $sql .= ' '.$criteria->renderWhere();
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Spaces must be used to indent lines; tabs are not allowed
                        Open

                                } elseif ( isset($status) && ($status != -1) ) {
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Spaces must be used to indent lines; tabs are not allowed
                        Open

                                }
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Spaces must be used to indent lines; tabs are not allowed
                        Open

                                    return false;
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Spaces must be used to indent lines; tabs are not allowed
                        Open

                                foreach ($mimetype_object->cleanVars as $k => $v) {
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Spaces must be used to indent lines; tabs are not allowed
                        Open

                                    $mimetype_object = new xoopsmimetypes();
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Spaces must be used to indent lines; tabs are not allowed
                        Open

                                    $format = "INSERT INTO %s (mime_id, mime_ext, mime_types, mime_name, mime_status)";
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Spaces must be used to indent lines; tabs are not allowed
                        Open

                                    $mimetype_object->assignVar('mime_id', $this->db->getInsertId() );
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Spaces must be used to indent lines; tabs are not allowed
                        Open

                                    return false;
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Spaces must be used to indent lines; tabs are not allowed
                        Open

                                if (!$result) {
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Spaces must be used to indent lines; tabs are not allowed
                        Open

                                    $this->setErrors($this->db->error() );
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Spaces must be used to indent lines; tabs are not allowed
                        Open

                            function &GetSelectList($criteria = null) {
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Spaces must be used to indent lines; tabs are not allowed
                        Open

                                }
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Spaces must be used to indent lines; tabs are not allowed
                        Open

                                    $ret[$myrow['mime_id']] = $myrow['mime_ext'] . ' - ' . $myrow['mime_name'];
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Spaces must be used to indent lines; tabs are not allowed
                        Open

                                $ret = new XoopsFormSelect($caption, $name, $value, $size, $multiple);
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Spaces must be used to indent lines; tabs are not allowed
                        Open

                                    }
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Spaces must be used to indent lines; tabs are not allowed
                        Open

                                $ret = '<h4>Errors</h4>';
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Spaces must be used to indent lines; tabs are not allowed
                        Open

                                return $ret;
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Spaces must be used to indent lines; tabs are not allowed
                        Open

                                        $ret[] = new xoopsmimetypes( $myrow );
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Spaces must be used to indent lines; tabs are not allowed
                        Open

                                if (!$mimetype_object->isDirty()) {
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Spaces must be used to indent lines; tabs are not allowed
                        Open

                                    $format .="mime_ext=%s, mime_types=%s, mime_name=%s, mime_status=%u";
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Spaces must be used to indent lines; tabs are not allowed
                        Open

                                    $result = $this->db->query($sql);
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Spaces must be used to indent lines; tabs are not allowed
                        Open

                                    $this->setErrors($this->db->error() );
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Spaces must be used to indent lines; tabs are not allowed
                        Open

                                }
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Spaces must be used to indent lines; tabs are not allowed
                        Open

                                if ($mimetype_object->isNew()) {
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Spaces must be used to indent lines; tabs are not allowed
                        Open

                                return true;
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Spaces must be used to indent lines; tabs are not allowed
                        Open

                                    $sql .= ' '.$criteria->renderWhere();
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Spaces must be used to indent lines; tabs are not allowed
                        Open

                                        $sql .= ' ORDER BY '.$criteria->getSort().' '.$criteria->getOrder();
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Spaces must be used to indent lines; tabs are not allowed
                        Open

                                            }
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Spaces must be used to indent lines; tabs are not allowed
                        Open

                                    return 0;
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Spaces must be used to indent lines; tabs are not allowed
                        Open

                            }
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Spaces must be used to indent lines; tabs are not allowed
                        Open

                                if (!$mimetype_object->cleanVars()) {
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Spaces must be used to indent lines; tabs are not allowed
                        Open

                                    ${$k} = $v;
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Spaces must be used to indent lines; tabs are not allowed
                        Open

                                    $result = $this->db->queryF($sql);
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Spaces must be used to indent lines; tabs are not allowed
                        Open

                            }
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Spaces must be used to indent lines; tabs are not allowed
                        Open

                                return $ret;
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Spaces must be used to indent lines; tabs are not allowed
                        Open

                                $this->_errors[] = trim($err_str);
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Spaces must be used to indent lines; tabs are not allowed
                        Open

                                    foreach ($this->_errors as $error) {
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Spaces must be used to indent lines; tabs are not allowed
                        Open

                                        $ret .= $error.'<br />';
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Spaces must be used to indent lines; tabs are not allowed
                        Open

                                    $ret .= 'None<br />';
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Spaces must be used to indent lines; tabs are not allowed
                        Open

                                }
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Spaces must be used to indent lines; tabs are not allowed
                        Open

                                }
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Spaces must be used to indent lines; tabs are not allowed
                        Open

                            }
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Spaces must be used to indent lines; tabs are not allowed
                        Open

                                    return false;
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Spaces must be used to indent lines; tabs are not allowed
                        Open

                                if (!$result) {
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Spaces must be used to indent lines; tabs are not allowed
                        Open

                            }
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Spaces must be used to indent lines; tabs are not allowed
                        Open

                            }
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Spaces must be used to indent lines; tabs are not allowed
                        Open

                                    return $ret;
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Spaces must be used to indent lines; tabs are not allowed
                        Open

                                    if ( !$asobject ) {
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Spaces must be used to indent lines; tabs are not allowed
                        Open

                                        $sql .= ' '.$criteria->renderWhere();
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Spaces must be used to indent lines; tabs are not allowed
                        Open

                                    $mime_status);
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Spaces must be used to indent lines; tabs are not allowed
                        Open

                                    $result = $this->db->queryF($sql);
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Spaces must be used to indent lines; tabs are not allowed
                        Open

                                }
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Spaces must be used to indent lines; tabs are not allowed
                        Open

                                }
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Spaces must be used to indent lines; tabs are not allowed
                        Open

                                } else {
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Spaces must be used to indent lines; tabs are not allowed
                        Open

                                $this->initVar('mperm_status'  ,XOBJ_DTYPE_INT,0,true,1);
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Spaces must be used to indent lines; tabs are not allowed
                        Open

                                if (isset($criteria) && is_subclass_of($criteria, 'criteriaelement')) {
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Spaces must be used to indent lines; tabs are not allowed
                        Open

                                if (false != $force) {
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Spaces must be used to indent lines; tabs are not allowed
                        Open

                                $result = $this->db->query($sql, $limit, $start);
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Spaces must be used to indent lines; tabs are not allowed
                        Open

                                    } else {
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Spaces must be used to indent lines; tabs are not allowed
                        Open

                                return $ret;
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Spaces must be used to indent lines; tabs are not allowed
                        Open

                                if (!$result) {
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Spaces must be used to indent lines; tabs are not allowed
                        Open

                                    return false;
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Spaces must be used to indent lines; tabs are not allowed
                        Open

                                    return true;
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Spaces must be used to indent lines; tabs are not allowed
                        Open

                                    $sql = sprintf($format, $this->db->prefix('mimetypes'),
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Spaces must be used to indent lines; tabs are not allowed
                        Open

                                } else {
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Spaces must be used to indent lines; tabs are not allowed
                        Open

                                if (false != $force) {
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Spaces must be used to indent lines; tabs are not allowed
                        Open

                                    return false;
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Spaces must be used to indent lines; tabs are not allowed
                        Open

                                $ret = array();
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Spaces must be used to indent lines; tabs are not allowed
                        Open

                                    $limit = $criteria->getLimit();
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Spaces must be used to indent lines; tabs are not allowed
                        Open

                            // constructor
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Spaces must be used to indent lines; tabs are not allowed
                        Open

                                $this->db = Database::getInstance();
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Spaces must be used to indent lines; tabs are not allowed
                        Open

                                }
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Spaces must be used to indent lines; tabs are not allowed
                        Open

                                $sql = 'SELECT COUNT(*) FROM '.$this->db->prefix('mimetypes');
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Spaces must be used to indent lines; tabs are not allowed
                        Open

                                    $sql = sprintf($format ,
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Spaces must be used to indent lines; tabs are not allowed
                        Open

                                    $mime_id,
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Spaces must be used to indent lines; tabs are not allowed
                        Open

                                    $this->db->quoteString($mime_types),
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Spaces must be used to indent lines; tabs are not allowed
                        Open

                                }
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Spaces must be used to indent lines; tabs are not allowed
                        Open

                                $sql = sprintf("DELETE FROM %s WHERE mperm_mime = %u", $this->db->prefix("mimetypes_perms"), $mimetype_object->getVar('mime_id'));
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Spaces must be used to indent lines; tabs are not allowed
                        Open

                                    $result = $this->db->query($sql);
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Spaces must be used to indent lines; tabs are not allowed
                        Open

                                $sql = 'SELECT * FROM '.$this->db->prefix('mimetypes');
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Spaces must be used to indent lines; tabs are not allowed
                        Open

                                if (!$result) {
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Spaces must be used to indent lines; tabs are not allowed
                        Open

                                while ($myrow = $this->db->fetchArray($result)) {
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Spaces must be used to indent lines; tabs are not allowed
                        Open

                                $this->initVar('mperm_mime',XOBJ_DTYPE_INT,0,true,11);
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Spaces must be used to indent lines; tabs are not allowed
                        Open

                                return $count;
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Spaces must be used to indent lines; tabs are not allowed
                        Open

                            function insert(&$mimetype_object, $force = false) {
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Spaces must be used to indent lines; tabs are not allowed
                        Open

                                }
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Spaces must be used to indent lines; tabs are not allowed
                        Open

                                    $this->db->quoteString($mime_ext),
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Spaces must be used to indent lines; tabs are not allowed
                        Open

                                } else {
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Spaces must be used to indent lines; tabs are not allowed
                        Open

                                    $this->db->quoteString($mime_ext),
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Spaces must be used to indent lines; tabs are not allowed
                        Open

                                    $mime_id);
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Spaces must be used to indent lines; tabs are not allowed
                        Open

                                } else {
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Spaces must be used to indent lines; tabs are not allowed
                        Open

                                $limit = $start = 0;
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Spaces must be used to indent lines; tabs are not allowed
                        Open

                                if (isset($criteria) && is_subclass_of($criteria, 'criteriaelement')) {
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Spaces must be used to indent lines; tabs are not allowed
                        Open

                                                $ret[$type] = $type;
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Spaces must be used to indent lines; tabs are not allowed
                        Open

                            function getHtmlErrors() {
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Spaces must be used to indent lines; tabs are not allowed
                        Open

                                }
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Spaces must be used to indent lines; tabs are not allowed
                        Open

                            function xoopsmimetypes_perms ($mperm_id=null) {
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Spaces must be used to indent lines; tabs are not allowed
                        Open

                                    $this->db->prefix('mimetypes'),
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Spaces must be used to indent lines; tabs are not allowed
                        Open

                                }
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Spaces must be used to indent lines; tabs are not allowed
                        Open

                                    $start = $criteria->getStart();
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Spaces must be used to indent lines; tabs are not allowed
                        Open

                                while ( $myrow = $this->db->fetchArray($result) ) {
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Spaces must be used to indent lines; tabs are not allowed
                        Open

                                    $mime_types = explode('|',$myrow['mime_types']);
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Spaces must be used to indent lines; tabs are not allowed
                        Open

                            function setErrors($err_str) {
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Spaces must be used to indent lines; tabs are not allowed
                        Open

                                    }
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Spaces must be used to indent lines; tabs are not allowed
                        Open

                            var $db;
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Spaces must be used to indent lines; tabs are not allowed
                        Open

                                $this->initVar('mperm_id',XOBJ_DTYPE_INT,0,true,10);
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Spaces must be used to indent lines; tabs are not allowed
                        Open

                                $this->initVar('mperm_groups'  ,XOBJ_DTYPE_TXTAREA,'',false,0);
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Spaces must be used to indent lines; tabs are not allowed
                        Open

                                if (!$result) {
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Spaces must be used to indent lines; tabs are not allowed
                        Open

                                    if ($whereClause != 'WHERE ()') {
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Spaces must be used to indent lines; tabs are not allowed
                        Open

                                    $format = "UPDATE %s SET ";
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Spaces must be used to indent lines; tabs are not allowed
                        Open

                                }
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Spaces must be used to indent lines; tabs are not allowed
                        Open

                                    $result = $this->db->queryF($sql);
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Spaces must be used to indent lines; tabs are not allowed
                        Open

                                    if ($criteria->getSort() != '') {
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Spaces must be used to indent lines; tabs are not allowed
                        Open

                            function XoopsFormSelectType( $caption, $name, $value=null, $size=1, $multiple=false ) {
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Spaces must be used to indent lines; tabs are not allowed
                        Open

                            function Get_TypeList() {
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Spaces must be used to indent lines; tabs are not allowed
                        Open

                                        if ( $type = substr( $mime_type, 0, strpos($mime_type, '/') ) ) {
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Spaces must be used to indent lines; tabs are not allowed
                        Open

                                if (!empty($this->_errors)) {
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Spaces must be used to indent lines; tabs are not allowed
                        Open

                            }
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Spaces must be used to indent lines; tabs are not allowed
                        Open

                            function getCount($criteria = null, $notNullFields='') {
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Spaces must be used to indent lines; tabs are not allowed
                        Open

                                    $whereClause = $criteria->renderWhere();
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Spaces must be used to indent lines; tabs are not allowed
                        Open

                                list($count) = $this->db->fetchRow($result);
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Spaces must be used to indent lines; tabs are not allowed
                        Open

                                }
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Spaces must be used to indent lines; tabs are not allowed
                        Open

                                if ($mimetype_object->isNew()) {
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Spaces must be used to indent lines; tabs are not allowed
                        Open

                                if (strtolower(get_class($mimetype_object)) != 'xoopsmimetypes') {
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Line exceeds 120 characters; contains 138 characters
                        Open

                                $sql = sprintf("DELETE FROM %s WHERE mperm_mime = %u", $this->db->prefix("mimetypes_perms"), $mimetype_object->getVar('mime_id'));
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Spaces must be used to indent lines; tabs are not allowed
                        Open

                                return true;
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Spaces must be used to indent lines; tabs are not allowed
                        Open

                                }
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Spaces must be used to indent lines; tabs are not allowed
                        Open

                                return $ret;
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Spaces must be used to indent lines; tabs are not allowed
                        Open

                            }
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Spaces must be used to indent lines; tabs are not allowed
                        Open

                            function XoopsFormSelectMime( $caption, $name, $value=null, $size=1, $multiple=false ) {
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Spaces must be used to indent lines; tabs are not allowed
                        Open

                                $ret = new XoopsFormSelect($caption, $name, $value, $size, $multiple);
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Spaces must be used to indent lines; tabs are not allowed
                        Open

                                return $ret;
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Spaces must be used to indent lines; tabs are not allowed
                        Open

                                $sql = 'SELECT * FROM ' . $this->db->prefix("mimetypes") ;
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Spaces must be used to indent lines; tabs are not allowed
                        Open

                                return $ret;
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Spaces must be used to indent lines; tabs are not allowed
                        Open

                                }
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Spaces must be used to indent lines; tabs are not allowed
                        Open

                                    }
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Spaces must be used to indent lines; tabs are not allowed
                        Open

                                }
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Spaces must be used to indent lines; tabs are not allowed
                        Open

                                $sql = sprintf("DELETE FROM %s WHERE mime_id = %u", $this->db->prefix("mimetypes"), $mimetype_object->getVar('mime_id'));
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Line exceeds 120 characters; contains 129 characters
                        Open

                                $sql = sprintf("DELETE FROM %s WHERE mime_id = %u", $this->db->prefix("mimetypes"), $mimetype_object->getVar('mime_id'));
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Spaces must be used to indent lines; tabs are not allowed
                        Open

                                }
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Spaces must be used to indent lines; tabs are not allowed
                        Open

                                } else {
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Spaces must be used to indent lines; tabs are not allowed
                        Open

                            }
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Spaces must be used to indent lines; tabs are not allowed
                        Open

                                $ret = array();
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Spaces must be used to indent lines; tabs are not allowed
                        Open

                                        $ret[$myrow['mime_id']] = $myrow;
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Spaces must be used to indent lines; tabs are not allowed
                        Open

                                    $format .= "VALUES (%u, %s, %s, %s, %u)";
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Spaces must be used to indent lines; tabs are not allowed
                        Open

                                    $mime_status,
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Spaces must be used to indent lines; tabs are not allowed
                        Open

                                }
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Spaces must be used to indent lines; tabs are not allowed
                        Open

                                $criteria->setSort('mime_ext');
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Spaces must be used to indent lines; tabs are not allowed
                        Open

                                    foreach ( $mime_types as $mime_type ) {
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Spaces must be used to indent lines; tabs are not allowed
                        Open

                                        }
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Spaces must be used to indent lines; tabs are not allowed
                        Open

                            }
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Spaces must be used to indent lines; tabs are not allowed
                        Open

                                $this->initVar('mperm_maxwidth'  ,XOBJ_DTYPE_INT,0,true,4);
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Spaces must be used to indent lines; tabs are not allowed
                        Open

                                $result = $this->db->query($sql, $limit, $start);
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Spaces must be used to indent lines; tabs are not allowed
                        Open

                                while ( $myrow = $this->db->fetchArray($result) ) {
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Spaces must be used to indent lines; tabs are not allowed
                        Open

                            }
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Spaces must be used to indent lines; tabs are not allowed
                        Open

                                    }
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Spaces must be used to indent lines; tabs are not allowed
                        Open

                                    $this->db->quoteString($mime_name),
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Spaces must be used to indent lines; tabs are not allowed
                        Open

                                    $format .=" WHERE mime_id = %u";
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Spaces must be used to indent lines; tabs are not allowed
                        Open

                                    $this->db->quoteString($mime_types),
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Spaces must be used to indent lines; tabs are not allowed
                        Open

                                if (false != $force) {
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Spaces must be used to indent lines; tabs are not allowed
                        Open

                            function delete(&$mimetype_object, $force = false) {
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Spaces must be used to indent lines; tabs are not allowed
                        Open

                                }
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Spaces must be used to indent lines; tabs are not allowed
                        Open

                                $ret->addOptionArray( $this->Get_TypeList() );
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Spaces must be used to indent lines; tabs are not allowed
                        Open

                                $result = $this->db->query($sql);
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Spaces must be used to indent lines; tabs are not allowed
                        Open

                                            if ( !in_array ($type, $ret) ) {
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Spaces must be used to indent lines; tabs are not allowed
                        Open

                                $result = $this->db->query($sql);
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Spaces must be used to indent lines; tabs are not allowed
                        Open

                                if (strtolower(get_class($mimetype_object)) != 'xoopsmimetypes') {
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Spaces must be used to indent lines; tabs are not allowed
                        Open

                                }
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Spaces must be used to indent lines; tabs are not allowed
                        Open

                                }
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Spaces must be used to indent lines; tabs are not allowed
                        Open

                                    $force = true;
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Spaces must be used to indent lines; tabs are not allowed
                        Open

                                    $this->db->quoteString($mime_name),
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Spaces must be used to indent lines; tabs are not allowed
                        Open

                                if (!$result) {
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Spaces must be used to indent lines; tabs are not allowed
                        Open

                                    return false;
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Spaces must be used to indent lines; tabs are not allowed
                        Open

                                    $result = $this->db->query($sql);
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Spaces must be used to indent lines; tabs are not allowed
                        Open

                                    $this->setErrors($this->db->error() );
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Spaces must be used to indent lines; tabs are not allowed
                        Open

                                    }
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Spaces must be used to indent lines; tabs are not allowed
                        Open

                                    return $ret;
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Spaces must be used to indent lines; tabs are not allowed
                        Open

                                $criteria = new CriteriaCompo();
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Spaces must be used to indent lines; tabs are not allowed
                        Open

                                $ret->addOptionArray( $this->GetSelectList($criteria) );
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Spaces must be used to indent lines; tabs are not allowed
                        Open

                                }
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Spaces must be used to indent lines; tabs are not allowed
                        Open

                                $this->initVar('mperm_module'  ,XOBJ_DTYPE_INT,0,true,5);
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Spaces must be used to indent lines; tabs are not allowed
                        Open

                                        $this->assignVars($mperm_id);
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Spaces must be used to indent lines; tabs are not allowed
                        Open

                                if (!$myrow) {
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Spaces must be used to indent lines; tabs are not allowed
                        Open

                            }
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Spaces must be used to indent lines; tabs are not allowed
                        Open

                            }
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Spaces must be used to indent lines; tabs are not allowed
                        Open

                            function mime_module($format='S') {
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Spaces must be used to indent lines; tabs are not allowed
                        Open

                                if (($format=='s') || ($format=='S') || ($format=='show')) {
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Spaces must be used to indent lines; tabs are not allowed
                        Open

                            function mime_groups() {
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Spaces must be used to indent lines; tabs are not allowed
                        Open

                            }
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Spaces must be used to indent lines; tabs are not allowed
                        Open

                            function mime_ext($format='S') {
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Spaces must be used to indent lines; tabs are not allowed
                        Open

                                    $myts = &MyTextSanitizer::getInstance();
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Spaces must be used to indent lines; tabs are not allowed
                        Open

                                $myrow = $this->db->fetchArray($this->db->query($sql));
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Spaces must be used to indent lines; tabs are not allowed
                        Open

                                $this->assignVars($myrow);
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Spaces must be used to indent lines; tabs are not allowed
                        Open

                                $ret = $this->getVar('mime_ext', $format);
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Spaces must be used to indent lines; tabs are not allowed
                        Open

                                }
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Spaces must be used to indent lines; tabs are not allowed
                        Open

                                    $ret = $myts->displayTarea($ret);
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Spaces must be used to indent lines; tabs are not allowed
                        Open

                                if ( !empty($mperm_id) ) {
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Spaces must be used to indent lines; tabs are not allowed
                        Open

                                    }
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Line exceeds 120 characters; contains 128 characters
                        Open

                                $this->db->prefix("modules") . ' m on p.mperm_module = m.mid' . ' WHERE mperm_id=' . $this->db->quoteString($module_id);
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Spaces must be used to indent lines; tabs are not allowed
                        Open

                            function mime_id() {
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Spaces must be used to indent lines; tabs are not allowed
                        Open

                                return $ret;
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Spaces must be used to indent lines; tabs are not allowed
                        Open

                                    $ret = $myts->displayTarea($ret);
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Spaces must be used to indent lines; tabs are not allowed
                        Open

                            function mperm_maxwidth() {
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Spaces must be used to indent lines; tabs are not allowed
                        Open

                                $groups = array();
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Spaces must be used to indent lines; tabs are not allowed
                        Open

                                $this->initVar('mperm_maxsize'  ,XOBJ_DTYPE_INT,0,true,8);
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Spaces must be used to indent lines; tabs are not allowed
                        Open

                                $sql = 'SELECT p.*, t.mime_ext, t.mime_name, m.name FROM ' . $this->db->prefix('mimetypes_perms') . ' p LEFT JOIN ' .
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Spaces must be used to indent lines; tabs are not allowed
                        Open

                                }
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Spaces must be used to indent lines; tabs are not allowed
                        Open

                            }
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Spaces must be used to indent lines; tabs are not allowed
                        Open

                            }
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Spaces must be used to indent lines; tabs are not allowed
                        Open

                            }
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Spaces must be used to indent lines; tabs are not allowed
                        Open

                                }
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Spaces must be used to indent lines; tabs are not allowed
                        Open

                                return $this->getVar('mperm_status');
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Spaces must be used to indent lines; tabs are not allowed
                        Open

                                $this->initVar('mperm_maxheight',XOBJ_DTYPE_INT,0,true,4);
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Spaces must be used to indent lines; tabs are not allowed
                        Open

                                        $this->load($mperm_id);
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Spaces must be used to indent lines; tabs are not allowed
                        Open

                                    $myts = &MyTextSanitizer::getInstance();
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Spaces must be used to indent lines; tabs are not allowed
                        Open

                                return $this->getVar('mperm_maxwidth');
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Spaces must be used to indent lines; tabs are not allowed
                        Open

                                    $this->setNew();
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Spaces must be used to indent lines; tabs are not allowed
                        Open

                                $this->db->prefix("mimetypes") . ' t on p.mperm_mime = t.mime_id LEFT JOIN ' .
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Spaces must be used to indent lines; tabs are not allowed
                        Open

                            function mperm_mime() {
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Spaces must be used to indent lines; tabs are not allowed
                        Open

                            }
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Spaces must be used to indent lines; tabs are not allowed
                        Open

                                return $ret;
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Spaces must be used to indent lines; tabs are not allowed
                        Open

                            function mperm_maxheight() {
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Spaces must be used to indent lines; tabs are not allowed
                        Open

                                $this->initVar('mime_ext',XOBJ_DTYPE_TXTBOX,'',true,10);
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Spaces must be used to indent lines; tabs are not allowed
                        Open

                                $this->initVar('mime_name',XOBJ_DTYPE_TXTBOX,'',true,255);
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Spaces must be used to indent lines; tabs are not allowed
                        Open

                                if (($format=='s') || ($format=='S') || ($format=='show')) {
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Spaces must be used to indent lines; tabs are not allowed
                        Open

                                    $myts = &MyTextSanitizer::getInstance();
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Spaces must be used to indent lines; tabs are not allowed
                        Open

                                    $ret = $myts->displayTarea($ret);
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Spaces must be used to indent lines; tabs are not allowed
                        Open

                            }
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Spaces must be used to indent lines; tabs are not allowed
                        Open

                                return $ret;
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Spaces must be used to indent lines; tabs are not allowed
                        Open

                            }
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Spaces must be used to indent lines; tabs are not allowed
                        Open

                            }
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Spaces must be used to indent lines; tabs are not allowed
                        Open

                                    if ( is_array($mperm_id) ) {
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Spaces must be used to indent lines; tabs are not allowed
                        Open

                            function load($module_id) {
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Line exceeds 120 characters; contains 125 characters
                        Open

                                $sql = 'SELECT p.*, t.mime_ext, t.mime_name, m.name FROM ' . $this->db->prefix('mimetypes_perms') . ' p LEFT JOIN ' .
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Spaces must be used to indent lines; tabs are not allowed
                        Open

                                return $this->getVar('mperm_mime');
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Spaces must be used to indent lines; tabs are not allowed
                        Open

                                return $this->getVar('mperm_maxheight');
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Spaces must be used to indent lines; tabs are not allowed
                        Open

                                    } else {
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Spaces must be used to indent lines; tabs are not allowed
                        Open

                            }
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Spaces must be used to indent lines; tabs are not allowed
                        Open

                                $ret = $this->getVar('mime_name', $format);
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Spaces must be used to indent lines; tabs are not allowed
                        Open

                                }
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Spaces must be used to indent lines; tabs are not allowed
                        Open

                                } else {
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Spaces must be used to indent lines; tabs are not allowed
                        Open

                                    $this->setNew();
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Spaces must be used to indent lines; tabs are not allowed
                        Open

                                return $this->getVar('mperm_module');
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Spaces must be used to indent lines; tabs are not allowed
                        Open

                            function mime_name($format='S') {
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Spaces must be used to indent lines; tabs are not allowed
                        Open

                            }
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Spaces must be used to indent lines; tabs are not allowed
                        Open

                            }
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Spaces must be used to indent lines; tabs are not allowed
                        Open

                                return $this->getVar('mperm_maxsize');
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Spaces must be used to indent lines; tabs are not allowed
                        Open

                                $this->db->prefix("modules") . ' m on p.mperm_module = m.mid' . ' WHERE mperm_id=' . $this->db->quoteString($module_id);
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Spaces must be used to indent lines; tabs are not allowed
                        Open

                                return $this->getVar('mperm_id');
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Spaces must be used to indent lines; tabs are not allowed
                        Open

                            function mperm_module() {
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Spaces must be used to indent lines; tabs are not allowed
                        Open

                                return $this->getVar('mperm_groups');
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Spaces must be used to indent lines; tabs are not allowed
                        Open

                            function GetGroups() {
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Spaces must be used to indent lines; tabs are not allowed
                        Open

                                }
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Spaces must be used to indent lines; tabs are not allowed
                        Open

                                if (($format=='s') || ($format=='S') || ($format=='show')) {
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Spaces must be used to indent lines; tabs are not allowed
                        Open

                            function mperm_status() {
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Spaces must be used to indent lines; tabs are not allowed
                        Open

                                $this->initVar('mod_name',XOBJ_DTYPE_TXTBOX,'',true,255);
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Spaces must be used to indent lines; tabs are not allowed
                        Open

                                $ret = $this->getVar('name', $format);
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Spaces must be used to indent lines; tabs are not allowed
                        Open

                            function mperm_maxsize() {
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Spaces must be used to indent lines; tabs are not allowed
                        Open

                                $this->db->prefix("mimetypes") . ' t on p.mperm_mime = t.mime_id ' . ' WHERE mperm_module=' . $this->mperm_module() . ' AND mperm_mime=' . $this->mperm_mime();
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Spaces must be used to indent lines; tabs are not allowed
                        Open

                                }
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Spaces must be used to indent lines; tabs are not allowed
                        Open

                                    } else {
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Spaces must be used to indent lines; tabs are not allowed
                        Open

                                    }
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Spaces must be used to indent lines; tabs are not allowed
                        Open

                            }
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Spaces must be used to indent lines; tabs are not allowed
                        Open

                                $criteria = new CriteriaCompo();
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Spaces must be used to indent lines; tabs are not allowed
                        Open

                                $criteria->setLimit($limit);
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Spaces must be used to indent lines; tabs are not allowed
                        Open

                                    if ($criteria->getSort() != '') {
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Spaces must be used to indent lines; tabs are not allowed
                        Open

                                if (!$result) {
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Spaces must be used to indent lines; tabs are not allowed
                        Open

                                if (!$result) {
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Spaces must be used to indent lines; tabs are not allowed
                        Open

                                $sql = 'SELECT p.mperm_groups FROM ' . $this->db->prefix('mimetypes_perms') . ' p LEFT JOIN ' .
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Spaces must be used to indent lines; tabs are not allowed
                        Open

                                $ret = array();
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Spaces must be used to indent lines; tabs are not allowed
                        Open

                                    foreach ($module as $v) {
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Spaces must be used to indent lines; tabs are not allowed
                        Open

                                $criteria->setGroupby('p.mperm_mime');
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Line exceeds 120 characters; contains 125 characters
                        Open

                                $sql = 'SELECT p.*, t.mime_ext, t.mime_name, m.name FROM ' . $this->db->prefix('mimetypes_perms') . ' p LEFT JOIN ' .
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Spaces must be used to indent lines; tabs are not allowed
                        Open

                                    $limit = $criteria->getLimit();
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Spaces must be used to indent lines; tabs are not allowed
                        Open

                                    }
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Spaces must be used to indent lines; tabs are not allowed
                        Open

                                }
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Spaces must be used to indent lines; tabs are not allowed
                        Open

                                    }
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Spaces must be used to indent lines; tabs are not allowed
                        Open

                            }
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Spaces must be used to indent lines; tabs are not allowed
                        Open

                                return $ret;
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Spaces must be used to indent lines; tabs are not allowed
                        Open

                                return $module->name();
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Spaces must be used to indent lines; tabs are not allowed
                        Open

                                }
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Spaces must be used to indent lines; tabs are not allowed
                        Open

                                $result = $this->db->query($sql, $limit, $start);
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Spaces must be used to indent lines; tabs are not allowed
                        Open

                                    return $ret;
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Spaces must be used to indent lines; tabs are not allowed
                        Open

                                list($count) = $this->db->fetchRow($result);
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Spaces must be used to indent lines; tabs are not allowed
                        Open

                                    $criteria->add(new Criteria('p.mperm_module', $module), 'AND');
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Spaces must be used to indent lines; tabs are not allowed
                        Open

                                $this->db->prefix("mimetypes") . ' t on p.mperm_mime = t.mime_id LEFT JOIN ' .
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Spaces must be used to indent lines; tabs are not allowed
                        Open

                                    return $ret;
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Spaces must be used to indent lines; tabs are not allowed
                        Open

                                return $ret;
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Spaces must be used to indent lines; tabs are not allowed
                        Open

                                        $sql .= ' '.$criteria->renderWhere();
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Spaces must be used to indent lines; tabs are not allowed
                        Open

                                }
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Spaces must be used to indent lines; tabs are not allowed
                        Open

                            function mime_module( $mid ) {
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Spaces must be used to indent lines; tabs are not allowed
                        Open

                                $module = $module_handler->get( $mid );
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Spaces must be used to indent lines; tabs are not allowed
                        Open

                                $result = $this->db->query($sql);
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Spaces must be used to indent lines; tabs are not allowed
                        Open

                                return $groups;
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Spaces must be used to indent lines; tabs are not allowed
                        Open

                            function getCount($criteria = null, $notNullFields='') {
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Spaces must be used to indent lines; tabs are not allowed
                        Open

                                $sql = 'SELECT COUNT(*) FROM ' . $this->db->prefix('mimetypes_perms') . ' p LEFT JOIN ' .
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Spaces must be used to indent lines; tabs are not allowed
                        Open

                                $result = $this->db->query($sql);
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Spaces must be used to indent lines; tabs are not allowed
                        Open

                            function insert(&$mimetype_object, $force = false) {
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Spaces must be used to indent lines; tabs are not allowed
                        Open

                                    $criteria->add($OtherCriteria, 'AND');
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Spaces must be used to indent lines; tabs are not allowed
                        Open

                                        $ret[$myrow['mime_id']] = $myrow;
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Spaces must be used to indent lines; tabs are not allowed
                        Open

                                }
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Spaces must be used to indent lines; tabs are not allowed
                        Open

                                    if ( !$asobject ) {
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Spaces must be used to indent lines; tabs are not allowed
                        Open

                                }
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Spaces must be used to indent lines; tabs are not allowed
                        Open

                                if ( is_object($OtherCriteria) ) {
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Spaces must be used to indent lines; tabs are not allowed
                        Open

                                $sql = 'SELECT p.*, t.mime_ext, t.mime_name, m.name FROM ' . $this->db->prefix('mimetypes_perms') . ' p LEFT JOIN ' .
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Spaces must be used to indent lines; tabs are not allowed
                        Open

                                    $start = $criteria->getStart();
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Spaces must be used to indent lines; tabs are not allowed
                        Open

                                $result = $this->db->query($sql);
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Spaces must be used to indent lines; tabs are not allowed
                        Open

                                $this->db->prefix("mimetypes") . ' t on p.mperm_mime = t.mime_id LEFT JOIN ' .
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Spaces must be used to indent lines; tabs are not allowed
                        Open

                                    return 0;
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Spaces must be used to indent lines; tabs are not allowed
                        Open

                            }
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Spaces must be used to indent lines; tabs are not allowed
                        Open

                            var $_errors = array();
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Spaces must be used to indent lines; tabs are not allowed
                        Open

                                } elseif ( isset($module) && ($module != -1) ) {
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Spaces must be used to indent lines; tabs are not allowed
                        Open

                                $this->db->prefix("modules") . ' m on p.mperm_module = m.mid';
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Spaces must be used to indent lines; tabs are not allowed
                        Open

                                if (!$result) {
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Spaces must be used to indent lines; tabs are not allowed
                        Open

                                while ( $myrow = $this->db->fetchArray($result) ) {
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Spaces must be used to indent lines; tabs are not allowed
                        Open

                                if (isset($criteria) && is_subclass_of($criteria, 'criteriaelement')) {
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Spaces must be used to indent lines; tabs are not allowed
                        Open

                                    $whereClause = $criteria->renderWhere();
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Spaces must be used to indent lines; tabs are not allowed
                        Open

                                        $criteria->add(new Criteria('p.mperm_module', $v), 'AND');
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Spaces must be used to indent lines; tabs are not allowed
                        Open

                                    }
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Spaces must be used to indent lines; tabs are not allowed
                        Open

                                $criteria->setSort('t.mime_ext');
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Spaces must be used to indent lines; tabs are not allowed
                        Open

                                    } else {
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Spaces must be used to indent lines; tabs are not allowed
                        Open

                                }
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Spaces must be used to indent lines; tabs are not allowed
                        Open

                                while ( $myrow = $this->db->fetchArray($result) ) {
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Spaces must be used to indent lines; tabs are not allowed
                        Open

                            function get_mimetypes($limit=20, $start=0, $module=-1, $OtherCriteria=null, $asobject=true) {
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Spaces must be used to indent lines; tabs are not allowed
                        Open

                                }
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Spaces must be used to indent lines; tabs are not allowed
                        Open

                                $this->db->prefix("modules") . ' m on p.mperm_module = m.mid';
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Spaces must be used to indent lines; tabs are not allowed
                        Open

                                    if ($whereClause != 'WHERE ()') {
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Line exceeds 120 characters; contains 167 characters
                        Open

                                $this->db->prefix("mimetypes") . ' t on p.mperm_mime = t.mime_id ' . ' WHERE mperm_module=' . $this->mperm_module() . ' AND mperm_mime=' . $this->mperm_mime();
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Spaces must be used to indent lines; tabs are not allowed
                        Open

                                    $groups[] = $myrow['mperm_groups'];
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Spaces must be used to indent lines; tabs are not allowed
                        Open

                                $criteria->setOrder('ASC');
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Spaces must be used to indent lines; tabs are not allowed
                        Open

                                        $sql .= ' ORDER BY '.$criteria->getSort().' '.$criteria->getOrder();
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Spaces must be used to indent lines; tabs are not allowed
                        Open

                                        $ret[] = new xoopsmimetypes_perms( $myrow );
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Spaces must be used to indent lines; tabs are not allowed
                        Open

                                $ret = array();
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Spaces must be used to indent lines; tabs are not allowed
                        Open

                                        $ret[] = new xoopsmimetypes_perms( $myrow );
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Spaces must be used to indent lines; tabs are not allowed
                        Open

                                }
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Spaces must be used to indent lines; tabs are not allowed
                        Open

                                if ( isset($module) && (is_array($module)) ) {
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Spaces must be used to indent lines; tabs are not allowed
                        Open

                                $criteria->setStart($start);
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Spaces must be used to indent lines; tabs are not allowed
                        Open

                                if (isset($criteria) && is_subclass_of($criteria, 'criteriaelement')) {
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Spaces must be used to indent lines; tabs are not allowed
                        Open

                            function get_byMimeModule( $mime_id, $mid, $asobject=true) {
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Spaces must be used to indent lines; tabs are not allowed
                        Open

                                $sql = 'SELECT * FROM ' . $this->db->prefix('mimetypes_perms') . ' WHERE mperm_mime = ' . $mime_id . ' AND mperm_module = ' . $mid;
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Line exceeds 120 characters; contains 139 characters
                        Open

                                $sql = 'SELECT * FROM ' . $this->db->prefix('mimetypes_perms') . ' WHERE mperm_mime = ' . $mime_id . ' AND mperm_module = ' . $mid;
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Spaces must be used to indent lines; tabs are not allowed
                        Open

                            }
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Spaces must be used to indent lines; tabs are not allowed
                        Open

                                return $count;
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Spaces must be used to indent lines; tabs are not allowed
                        Open

                            }
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Spaces must be used to indent lines; tabs are not allowed
                        Open

                                $module_handler =& xoops_gethandler('module');
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Spaces must be used to indent lines; tabs are not allowed
                        Open

                                    $sql .= ' '.$criteria->renderWhere() . $criteria->getGroupby();
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Spaces must be used to indent lines; tabs are not allowed
                        Open

                                    }
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Spaces must be used to indent lines; tabs are not allowed
                        Open

                                    if ( !$asobject ) {
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Spaces must be used to indent lines; tabs are not allowed
                        Open

                                }
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Spaces must be used to indent lines; tabs are not allowed
                        Open

                                while ( $myrow = $this->db->fetchArray($result) ) {
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Spaces must be used to indent lines; tabs are not allowed
                        Open

                                        $ret[$myrow['mime_id']] = $myrow;
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Line exceeds 120 characters; contains 152 characters
                        Open

                                    $format = "INSERT INTO %s (mperm_id, mperm_mime, mperm_module, mperm_groups, mperm_status, mperm_maxwidth, mperm_maxheight, mperm_maxsize)";
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Spaces must be used to indent lines; tabs are not allowed
                        Open

                                    $mperm_module,
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Spaces must be used to indent lines; tabs are not allowed
                        Open

                                if ($mimetype_object->isNew()) {
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Spaces must be used to indent lines; tabs are not allowed
                        Open

                                if (strtolower(get_class($mimetype_object)) != 'xoopsmimetypes_perms') {
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Line exceeds 120 characters; contains 205 characters
                        Open

                                $sql = sprintf("DELETE FROM %s WHERE mperm_mime = %u AND mperm_module = %u", $this->db->prefix("mimetypes_perms"), $mimetype_object->getVar('mperm_mime'), $mimetype_object->getVar('mperm_module'));
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Spaces must be used to indent lines; tabs are not allowed
                        Open

                                    $result = $this->db->query($sql);
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Spaces must be used to indent lines; tabs are not allowed
                        Open

                                    $this->db->prefix('mimetypes_perms'),
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Spaces must be used to indent lines; tabs are not allowed
                        Open

                                    return false;
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Spaces must be used to indent lines; tabs are not allowed
                        Open

                                }
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Spaces must be used to indent lines; tabs are not allowed
                        Open

                                }
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Spaces must be used to indent lines; tabs are not allowed
                        Open

                                if (!$result) {
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Spaces must be used to indent lines; tabs are not allowed
                        Open

                                    return false;
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Spaces must be used to indent lines; tabs are not allowed
                        Open

                                if ($mimetype_object->isNew()) {
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Spaces must be used to indent lines; tabs are not allowed
                        Open

                                    $mperm_maxheight,
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Spaces must be used to indent lines; tabs are not allowed
                        Open

                                    $mperm_id);
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Spaces must be used to indent lines; tabs are not allowed
                        Open

                                if (!$result) {
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Spaces must be used to indent lines; tabs are not allowed
                        Open

                                return true;
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Spaces must be used to indent lines; tabs are not allowed
                        Open

                                    return true;
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Spaces must be used to indent lines; tabs are not allowed
                        Open

                                    $mperm_maxwidth,
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Spaces must be used to indent lines; tabs are not allowed
                        Open

                                    $mperm_maxwidth,
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Spaces must be used to indent lines; tabs are not allowed
                        Open

                                }
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Spaces must be used to indent lines; tabs are not allowed
                        Open

                                    return false;
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Spaces must be used to indent lines; tabs are not allowed
                        Open

                                }
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Spaces must be used to indent lines; tabs are not allowed
                        Open

                                if (strtolower(get_class($mimetype_object)) != 'xoopsmimetypes_perms') {
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Spaces must be used to indent lines; tabs are not allowed
                        Open

                                $sql = sprintf("DELETE FROM %s WHERE mperm_mime = %u AND mperm_module = %u", $this->db->prefix("mimetypes_perms"), $mimetype_object->getVar('mperm_mime'), $mimetype_object->getVar('mperm_module'));
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Spaces must be used to indent lines; tabs are not allowed
                        Open

                                } else {
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Spaces must be used to indent lines; tabs are not allowed
                        Open

                                    $this->setErrors($this->db->error() );
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Spaces must be used to indent lines; tabs are not allowed
                        Open

                                if (strtolower(get_class($mimetype_object)) != 'xoopsmimetypes_perms') {
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Spaces must be used to indent lines; tabs are not allowed
                        Open

                                    $format .= "VALUES (%u, %u, %u, %s, %u, %u, %u, %u)";
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Spaces must be used to indent lines; tabs are not allowed
                        Open

                                    $sql = sprintf($format ,
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Spaces must be used to indent lines; tabs are not allowed
                        Open

                                    $force = true;
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Spaces must be used to indent lines; tabs are not allowed
                        Open

                                if (false != $force) {
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Spaces must be used to indent lines; tabs are not allowed
                        Open

                                    $this->setErrors($this->db->error() );
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Spaces must be used to indent lines; tabs are not allowed
                        Open

                            }
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Spaces must be used to indent lines; tabs are not allowed
                        Open

                                if (!$result) {
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Spaces must be used to indent lines; tabs are not allowed
                        Open

                                    $mimetype_object = new xoopsmimetypes();
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Spaces must be used to indent lines; tabs are not allowed
                        Open

                                    $mperm_mime,
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Spaces must be used to indent lines; tabs are not allowed
                        Open

                                    $mperm_groups,
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Spaces must be used to indent lines; tabs are not allowed
                        Open

                                    $result = $this->db->query($sql);
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Spaces must be used to indent lines; tabs are not allowed
                        Open

                                }
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Spaces must be used to indent lines; tabs are not allowed
                        Open

                                    return false;
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Spaces must be used to indent lines; tabs are not allowed
                        Open

                                }
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Spaces must be used to indent lines; tabs are not allowed
                        Open

                                    $mperm_status,
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Spaces must be used to indent lines; tabs are not allowed
                        Open

                                    $mperm_maxsize,
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Spaces must be used to indent lines; tabs are not allowed
                        Open

                                }
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Spaces must be used to indent lines; tabs are not allowed
                        Open

                                    return false;
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Spaces must be used to indent lines; tabs are not allowed
                        Open

                                if (false != $force) {
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Spaces must be used to indent lines; tabs are not allowed
                        Open

                                return true;
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Spaces must be used to indent lines; tabs are not allowed
                        Open

                                }
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Spaces must be used to indent lines; tabs are not allowed
                        Open

                                if (false != $force) {
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Spaces must be used to indent lines; tabs are not allowed
                        Open

                                    return false;
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Spaces must be used to indent lines; tabs are not allowed
                        Open

                                    ${$k} = $v;
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Spaces must be used to indent lines; tabs are not allowed
                        Open

                                } else {
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Spaces must be used to indent lines; tabs are not allowed
                        Open

                                    $format .=" WHERE mperm_id = %u";
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Spaces must be used to indent lines; tabs are not allowed
                        Open

                                    $sql = sprintf($format, $this->db->prefix('mimetypes_perms'),
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Spaces must be used to indent lines; tabs are not allowed
                        Open

                                    $mperm_maxheight,
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Spaces must be used to indent lines; tabs are not allowed
                        Open

                                $sql = sprintf("DELETE FROM %s WHERE mperm_id = %u", $this->db->prefix("mimetypes_perms"), $mimetype_object->getVar('mperm_id'));
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Spaces must be used to indent lines; tabs are not allowed
                        Open

                            function deletebyMime(&$mimetype_object, $force = false) {
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Spaces must be used to indent lines; tabs are not allowed
                        Open

                                    $this->setErrors($this->db->error() );
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Spaces must be used to indent lines; tabs are not allowed
                        Open

                                }
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Spaces must be used to indent lines; tabs are not allowed
                        Open

                                if (strtolower(get_class($mimetype_object)) != 'xoopsmimetypes_perms') {
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Spaces must be used to indent lines; tabs are not allowed
                        Open

                                    $mperm_module,
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Spaces must be used to indent lines; tabs are not allowed
                        Open

                                    $mperm_maxsize );
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Spaces must be used to indent lines; tabs are not allowed
                        Open

                                    $format = "UPDATE %s SET ";
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Spaces must be used to indent lines; tabs are not allowed
                        Open

                            function delete(&$mimetype_object, $force = false) {
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Spaces must be used to indent lines; tabs are not allowed
                        Open

                                if (!$mimetype_object->isDirty()) {
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Spaces must be used to indent lines; tabs are not allowed
                        Open

                                if (false != $force) {
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Spaces must be used to indent lines; tabs are not allowed
                        Open

                                }
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Spaces must be used to indent lines; tabs are not allowed
                        Open

                                    $result = $this->db->queryF($sql);
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Spaces must be used to indent lines; tabs are not allowed
                        Open

                                    $format = "INSERT INTO %s (mperm_id, mperm_mime, mperm_module, mperm_groups, mperm_status, mperm_maxwidth, mperm_maxheight, mperm_maxsize)";
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Spaces must be used to indent lines; tabs are not allowed
                        Open

                                    return false;
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Spaces must be used to indent lines; tabs are not allowed
                        Open

                                    return false;
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Spaces must be used to indent lines; tabs are not allowed
                        Open

                                if (!$result) {
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Spaces must be used to indent lines; tabs are not allowed
                        Open

                            function deletebyModule(&$mimetype_object, $force = false) {
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Line exceeds 120 characters; contains 146 characters
                        Open

                                    $format .="mperm_mime=%u, mperm_module=%u, mperm_groups=%s, mperm_status=%u, mperm_maxwidth=%u, mperm_maxheight=%u, mperm_maxsize=%u";
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Spaces must be used to indent lines; tabs are not allowed
                        Open

                                    $mperm_mime,
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Spaces must be used to indent lines; tabs are not allowed
                        Open

                                    $result = $this->db->query($sql);
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Spaces must be used to indent lines; tabs are not allowed
                        Open

                                }
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Line exceeds 120 characters; contains 137 characters
                        Open

                                $sql = sprintf("DELETE FROM %s WHERE mperm_id = %u", $this->db->prefix("mimetypes_perms"), $mimetype_object->getVar('mperm_id'));
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Spaces must be used to indent lines; tabs are not allowed
                        Open

                                }
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Spaces must be used to indent lines; tabs are not allowed
                        Open

                                }
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Line exceeds 120 characters; contains 141 characters
                        Open

                                $sql = sprintf("DELETE FROM %s WHERE mperm_mime = %u", $this->db->prefix("mimetypes_perms"), $mimetype_object->getVar('mperm_mime'));
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Spaces must be used to indent lines; tabs are not allowed
                        Open

                                $sql = sprintf("DELETE FROM %s WHERE mperm_module = %u AND mperm_mime = %u", $this->db->prefix("mimetypes_perms"), $mimetype_object->getVar('mperm_module'), $mimetype_object->getVar('mperm_mime'));
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Spaces must be used to indent lines; tabs are not allowed
                        Open

                                    return false;
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Spaces must be used to indent lines; tabs are not allowed
                        Open

                                } else {
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Spaces must be used to indent lines; tabs are not allowed
                        Open

                                    $result = $this->db->query($sql);
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Spaces must be used to indent lines; tabs are not allowed
                        Open

                                }
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Spaces must be used to indent lines; tabs are not allowed
                        Open

                                foreach ($mimetype_object->cleanVars as $k => $v) {
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Spaces must be used to indent lines; tabs are not allowed
                        Open

                                    $mperm_id,
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Spaces must be used to indent lines; tabs are not allowed
                        Open

                                    $this->db->quoteString($mperm_groups),
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Spaces must be used to indent lines; tabs are not allowed
                        Open

                                    $mperm_status,
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Spaces must be used to indent lines; tabs are not allowed
                        Open

                                } else {
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Spaces must be used to indent lines; tabs are not allowed
                        Open

                                return true;
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Spaces must be used to indent lines; tabs are not allowed
                        Open

                            function deletebyMimeModule(&$mimetype_object, $force = false) {
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Spaces must be used to indent lines; tabs are not allowed
                        Open

                                return true;
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Spaces must be used to indent lines; tabs are not allowed
                        Open

                            }
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Spaces must be used to indent lines; tabs are not allowed
                        Open

                                $sql = sprintf("DELETE FROM %s WHERE mperm_mime = %u", $this->db->prefix("mimetypes_perms"), $mimetype_object->getVar('mperm_mime'));
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Spaces must be used to indent lines; tabs are not allowed
                        Open

                                }
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Spaces must be used to indent lines; tabs are not allowed
                        Open

                                    $format .="mperm_mime=%u, mperm_module=%u, mperm_groups=%s, mperm_status=%u, mperm_maxwidth=%u, mperm_maxheight=%u, mperm_maxsize=%u";
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Spaces must be used to indent lines; tabs are not allowed
                        Open

                                    $result = $this->db->queryF($sql);
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Spaces must be used to indent lines; tabs are not allowed
                        Open

                                    $this->setErrors($this->db->error() );
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Spaces must be used to indent lines; tabs are not allowed
                        Open

                                    $mimetype_object->assignVar('mime_id', $this->db->getInsertId() );
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Spaces must be used to indent lines; tabs are not allowed
                        Open

                            }
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Spaces must be used to indent lines; tabs are not allowed
                        Open

                                    return false;
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Spaces must be used to indent lines; tabs are not allowed
                        Open

                                } else {
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Spaces must be used to indent lines; tabs are not allowed
                        Open

                                    $result = $this->db->queryF($sql);
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Spaces must be used to indent lines; tabs are not allowed
                        Open

                                if (strtolower(get_class($mimetype_object)) != 'xoopsmimetypes_perms') {
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Spaces must be used to indent lines; tabs are not allowed
                        Open

                                    $result = $this->db->queryF($sql);
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Spaces must be used to indent lines; tabs are not allowed
                        Open

                            }
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Spaces must be used to indent lines; tabs are not allowed
                        Open

                                if (!$mimetype_object->cleanVars()) {
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Spaces must be used to indent lines; tabs are not allowed
                        Open

                                }
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Spaces must be used to indent lines; tabs are not allowed
                        Open

                                }
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Spaces must be used to indent lines; tabs are not allowed
                        Open

                                }
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Line exceeds 120 characters; contains 205 characters
                        Open

                                $sql = sprintf("DELETE FROM %s WHERE mperm_module = %u AND mperm_mime = %u", $this->db->prefix("mimetypes_perms"), $mimetype_object->getVar('mperm_module'), $mimetype_object->getVar('mperm_mime'));
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Line exceeds 120 characters; contains 129 characters
                        Open

                                $sql = 'SELECT p.mperm_groups, t.mime_ext, t.mime_types FROM ' . $this->db->prefix('mimetypes_perms') . ' p LEFT JOIN ' .
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Spaces must be used to indent lines; tabs are not allowed
                        Open

                                if ( count($ret) == 0 ) {
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Spaces must be used to indent lines; tabs are not allowed
                        Open

                            }
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Spaces must be used to indent lines; tabs are not allowed
                        Open

                                            $ret = array_merge ($ret, $tmp);
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Spaces must be used to indent lines; tabs are not allowed
                        Open

                            }
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Spaces must be used to indent lines; tabs are not allowed
                        Open

                                $ret = '<h4>Errors</h4>';
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Spaces must be used to indent lines; tabs are not allowed
                        Open

                                } else {
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Spaces must be used to indent lines; tabs are not allowed
                        Open

                                    $ret .= 'None<br />';
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Spaces must be used to indent lines; tabs are not allowed
                        Open

                            }
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Spaces must be used to indent lines; tabs are not allowed
                        Open

                                $sql = 'SELECT p.mperm_groups, t.mime_ext, t.mime_types FROM ' . $this->db->prefix('mimetypes_perms') . ' p LEFT JOIN ' .
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Spaces must be used to indent lines; tabs are not allowed
                        Open

                                    $mperm_groups = explode('|',$myrow['mperm_groups']);
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Spaces must be used to indent lines; tabs are not allowed
                        Open

                                if (false != $force) {
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Spaces must be used to indent lines; tabs are not allowed
                        Open

                                    }
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Spaces must be used to indent lines; tabs are not allowed
                        Open

                                    return false;
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Spaces must be used to indent lines; tabs are not allowed
                        Open

                                while ( $myrow = $this->db->fetchArray($result) ) {
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Spaces must be used to indent lines; tabs are not allowed
                        Open

                                    foreach ($this->_errors as $error) {
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Spaces must be used to indent lines; tabs are not allowed
                        Open

                                return true;
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Spaces must be used to indent lines; tabs are not allowed
                        Open

                                if (!empty($this->_errors)) {
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Spaces must be used to indent lines; tabs are not allowed
                        Open

                                    $result = $this->db->queryF($sql);
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Spaces must be used to indent lines; tabs are not allowed
                        Open

                                        $mime_types = explode('|',$myrow['mime_types']);
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Spaces must be used to indent lines; tabs are not allowed
                        Open

                                } else {
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Spaces must be used to indent lines; tabs are not allowed
                        Open

                                }
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Spaces must be used to indent lines; tabs are not allowed
                        Open

                            function allowedMimeTypes( $mid, $groups, $allowedMimeTypes ) {
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Spaces must be used to indent lines; tabs are not allowed
                        Open

                                $ret = array();
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Spaces must be used to indent lines; tabs are not allowed
                        Open

                                $this->_errors[] = trim($err_str);
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Spaces must be used to indent lines; tabs are not allowed
                        Open

                                }
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Spaces must be used to indent lines; tabs are not allowed
                        Open

                            function setErrors($err_str) {
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Spaces must be used to indent lines; tabs are not allowed
                        Open

                                    }
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Spaces must be used to indent lines; tabs are not allowed
                        Open

                                $this->db->prefix("mimetypes") . ' t on p.mperm_mime = t.mime_id WHERE mperm_module=' . $mid;
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Spaces must be used to indent lines; tabs are not allowed
                        Open

                                $result = $this->db->query($sql);
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Spaces must be used to indent lines; tabs are not allowed
                        Open

                                    if (count(array_intersect($groups,$mperm_groups)) > 0) {
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Spaces must be used to indent lines; tabs are not allowed
                        Open

                                        $tmp = array_intersect($allowedMimeTypes,$mime_types);
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Spaces must be used to indent lines; tabs are not allowed
                        Open

                                }
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Spaces must be used to indent lines; tabs are not allowed
                        Open

                                    $result = $this->db->query($sql);
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Spaces must be used to indent lines; tabs are not allowed
                        Open

                                    $this->setErrors($this->db->error() );
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Spaces must be used to indent lines; tabs are not allowed
                        Open

                                    return $ret;
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Spaces must be used to indent lines; tabs are not allowed
                        Open

                                        $ret .= $error.'<br />';
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Spaces must be used to indent lines; tabs are not allowed
                        Open

                                }
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Spaces must be used to indent lines; tabs are not allowed
                        Open

                                return $ret;
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Spaces must be used to indent lines; tabs are not allowed
                        Open

                                }
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Spaces must be used to indent lines; tabs are not allowed
                        Open

                                    @$ret = include( XOOPS_ROOT_PATH . '/class/mimetypes.inc.php' );
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Spaces must be used to indent lines; tabs are not allowed
                        Open

                            function getHtmlErrors() {
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Spaces must be used to indent lines; tabs are not allowed
                        Open

                                if (!$result) {
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Spaces must be used to indent lines; tabs are not allowed
                        Open

                            }
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Spaces must be used to indent lines; tabs are not allowed
                        Open

                                        if (count($tmp) > 0) {
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Spaces must be used to indent lines; tabs are not allowed
                        Open

                                        }
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Spaces must be used to indent lines; tabs are not allowed
                        Open

                                return $ret;
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        No space found after comma in function call
                        Open

                                $this->initVar('mime_types',XOBJ_DTYPE_TXTAREA,'',true,0);
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        No space found after comma in function call
                        Open

                                $this->initVar('mime_name',XOBJ_DTYPE_TXTBOX,'',true,255);
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        No space found after comma in function call
                        Open

                                $this->initVar('mime_ext',XOBJ_DTYPE_TXTBOX,'',true,10);
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        No space found after comma in function call
                        Open

                                $this->initVar('mime_types',XOBJ_DTYPE_TXTAREA,'',true,0);
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        No space found after comma in function call
                        Open

                                $this->initVar('mime_status',XOBJ_DTYPE_INT,0,true,1);
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Expected 0 spaces after opening bracket; 1 found
                        Open

                                if ( !empty($mime_id) ) {
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        No space found after comma in function call
                        Open

                                $this->initVar('mime_id',XOBJ_DTYPE_INT,0,true,11);
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        No space found after comma in function call
                        Open

                                $this->initVar('mime_status',XOBJ_DTYPE_INT,0,true,1);
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        No space found after comma in function call
                        Open

                                $this->initVar('mime_status',XOBJ_DTYPE_INT,0,true,1);
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Newline required after opening brace
                        Open

                        if (!defined('XOOPS_ROOT_PATH')) { die('XOOPS root path not defined'); }
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Expected 0 spaces before closing bracket; 1 found
                        Open

                        include_once( XOOPS_ROOT_PATH . '/class/xoopsobject.php' );
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Opening brace should be on a new line
                        Open

                            function load_byExt($mime_ext) {
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Space after opening parenthesis of function call prohibited
                        Open

                        include_once( XOOPS_ROOT_PATH . '/class/xoopsobject.php' );
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        No space found after comma in function call
                        Open

                                $this->initVar('mime_id',XOBJ_DTYPE_INT,0,true,11);
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        No space found after comma in function call
                        Open

                                $this->initVar('mime_ext',XOBJ_DTYPE_TXTBOX,'',true,10);
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        No space found after comma in function call
                        Open

                                $this->initVar('mime_ext',XOBJ_DTYPE_TXTBOX,'',true,10);
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        No space found after comma in function call
                        Open

                                $this->initVar('mime_types',XOBJ_DTYPE_TXTAREA,'',true,0);
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        No space found after comma in function call
                        Open

                                $this->initVar('mime_name',XOBJ_DTYPE_TXTBOX,'',true,255);
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        No space found after comma in function call
                        Open

                                $this->initVar('mime_status',XOBJ_DTYPE_INT,0,true,1);
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Opening brace should be on a new line
                        Open

                            function load($mime_id) {
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        No space found after comma in function call
                        Open

                                $this->initVar('mime_name',XOBJ_DTYPE_TXTBOX,'',true,255);
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        No space found after comma in function call
                        Open

                                $this->initVar('mime_id',XOBJ_DTYPE_INT,0,true,11);
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Expected 0 spaces after opening bracket; 1 found
                        Open

                                    if ( is_array($mime_id) ) {
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Opening brace should be on a new line
                        Open

                            function xoopsmimetypes ($mime_id=null) {
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        No space found after comma in function call
                        Open

                                $this->initVar('mime_ext',XOBJ_DTYPE_TXTBOX,'',true,10);
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        No space found after comma in function call
                        Open

                                $this->initVar('mime_name',XOBJ_DTYPE_TXTBOX,'',true,255);
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        No space found after comma in function call
                        Open

                                $this->initVar('mime_id',XOBJ_DTYPE_INT,0,true,11);
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        No space found after comma in function call
                        Open

                                $this->initVar('mime_types',XOBJ_DTYPE_TXTAREA,'',true,0);
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Closing brace must be on a line by itself
                        Open

                        if (!defined('XOOPS_ROOT_PATH')) { die('XOOPS root path not defined'); }
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Expected 0 spaces after opening bracket; 1 found
                        Open

                                    if ( !$asobject ) {
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Opening brace should be on a new line
                        Open

                            function get_byExt( $mime_ext, $asobject=true ) {
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Opening brace should be on a new line
                        Open

                            function mime_id() {
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Expected 0 spaces before closing bracket; 1 found
                        Open

                                        $ret[] = new xoopsmimetypes( $myrow );
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Opening brace should be on a new line
                        Open

                            function get_mimetypes($limit=20, $start=0, $status=-1, $OtherCriteria=null, $sort='mime_ext', $order='ASC', $asobject=true) {
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Expected 0 spaces after opening bracket; 1 found
                        Open

                                if ( isset($status) && (is_array($status)) ) {
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Opening brace should be on a new line
                        Open

                            function mime_status() {
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Expected 0 spaces after opening bracket; 1 found
                        Open

                                } elseif ( isset($status) && ($status != -1) ) {
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Opening brace should be on a new line
                        Open

                            function &create($isNew = true) {
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Opening brace should be on a new line
                        Open

                            function mime_name($format='S') {
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Expected 0 spaces after opening bracket; 1 found
                        Open

                                if ( is_object($OtherCriteria) ) {
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Opening brace should be on a new line
                        Open

                            function mime_ext($format='S') {
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Opening brace should be on a new line
                        Open

                            function mime_types($format='S') {
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Space after opening parenthesis of function call prohibited
                        Open

                                        $ret[] = new xoopsmimetypes( $myrow );
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Expected 0 spaces after opening bracket; 1 found
                        Open

                                while ( $myrow = $this->db->fetchArray($result) ) {
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Multi-line function call not indented correctly; expected 16 spaces but found 12
                        Open

                                    $this->db->prefix('mimetypes'),
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Multi-line function call not indented correctly; expected 16 spaces but found 12
                        Open

                                    $this->db->quoteString($mime_types),
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Expected 0 spaces before closing bracket; 1 found
                        Open

                                        if ( $type = substr( $mime_type, 0, strpos($mime_type, '/') ) ) {
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        No space found after comma in function call
                        Open

                                $this->initVar('mperm_id',XOBJ_DTYPE_INT,0,true,10);
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        No space found after comma in function call
                        Open

                                $this->initVar('mperm_id',XOBJ_DTYPE_INT,0,true,10);
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        No space found after comma in function call
                        Open

                                $this->initVar('mperm_mime',XOBJ_DTYPE_INT,0,true,11);
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        No space found after comma in function call
                        Open

                                $this->initVar('mperm_groups'  ,XOBJ_DTYPE_TXTAREA,'',false,0);
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        No space found after comma in function call
                        Open

                                $this->initVar('mperm_module'  ,XOBJ_DTYPE_INT,0,true,5);
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Multi-line function call not indented correctly; expected 16 spaces but found 12
                        Open

                                    $this->db->quoteString($mime_name),
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Opening brace should be on a new line
                        Open

                            function delete(&$mimetype_object, $force = false) {
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Expected 0 spaces before closing bracket; 1 found
                        Open

                                    $this->setErrors($this->db->error() );
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Opening brace should be on a new line
                        Open

                            function XoopsFormSelectMime( $caption, $name, $value=null, $size=1, $multiple=false ) {
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        No space found after comma in function call
                        Open

                                    $mime_types = explode('|',$myrow['mime_types']);
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Expected 0 spaces after opening bracket; 1 found
                        Open

                                        if ( $type = substr( $mime_type, 0, strpos($mime_type, '/') ) ) {
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        No space found after comma in function call
                        Open

                                $this->initVar('mperm_module'  ,XOBJ_DTYPE_INT,0,true,5);
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Opening brace should be on a new line
                        Open

                            function xoopsmimetypes_perms ($mperm_id=null) {
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Opening parenthesis of a multi-line function call must be the last content on the line
                        Open

                                    $sql = sprintf($format ,
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Opening parenthesis of a multi-line function call must be the last content on the line
                        Open

                                    $sql = sprintf($format, $this->db->prefix('mimetypes'),
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Space after opening parenthesis of function call prohibited
                        Open

                                $ret->addOptionArray( $this->Get_TypeList() );
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        No space found after comma in function call
                        Open

                                $this->initVar('mperm_mime',XOBJ_DTYPE_INT,0,true,11);
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        No space found after comma in function call
                        Open

                                $this->initVar('mperm_groups'  ,XOBJ_DTYPE_TXTAREA,'',false,0);
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Expected 0 spaces after opening bracket; 1 found
                        Open

                                while ( $myrow = $this->db->fetchArray($result) ) {
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Expected 0 spaces before closing bracket; 1 found
                        Open

                                    $mimetype_object->assignVar('mime_id', $this->db->getInsertId() );
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Space before opening parenthesis of function call prohibited
                        Open

                                            if ( !in_array ($type, $ret) ) {
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Multi-line function call not indented correctly; expected 16 spaces but found 12
                        Open

                                    $this->db->quoteString($mime_ext),
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Closing parenthesis of a multi-line function call must be on a line by itself
                        Open

                                    $mime_id);
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Expected 0 spaces before closing bracket; 1 found
                        Open

                                    $this->setErrors($this->db->error() );
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        No space found after comma in function call
                        Open

                                $this->initVar('mperm_status'  ,XOBJ_DTYPE_INT,0,true,1);
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Expected 0 spaces before closing bracket; 1 found
                        Open

                                        $ret[] = new xoopsmimetypes( $myrow );
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Multi-line function call not indented correctly; expected 16 spaces but found 12
                        Open

                                    $mime_id,
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        No space found after comma in function call
                        Open

                                $this->initVar('mperm_mime',XOBJ_DTYPE_INT,0,true,11);
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        No space found after comma in function call
                        Open

                                $this->initVar('mperm_module'  ,XOBJ_DTYPE_INT,0,true,5);
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        No space found after comma in function call
                        Open

                                $this->initVar('mperm_module'  ,XOBJ_DTYPE_INT,0,true,5);
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        No space found after comma in function call
                        Open

                                $this->initVar('mperm_groups'  ,XOBJ_DTYPE_TXTAREA,'',false,0);
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        No space found after comma in function call
                        Open

                                $this->initVar('mperm_status'  ,XOBJ_DTYPE_INT,0,true,1);
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Multi-line function call not indented correctly; expected 16 spaces but found 12
                        Open

                                    $this->db->quoteString($mime_name),
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Expected 0 spaces before closing bracket; 1 found
                        Open

                                    $this->setErrors($this->db->error() );
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Opening brace should be on a new line
                        Open

                            function getCount($criteria = null, $notNullFields='') {
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Multi-line function call not indented correctly; expected 16 spaces but found 12
                        Open

                                    $this->db->quoteString($mime_types),
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Multi-line function call not indented correctly; expected 16 spaces but found 12
                        Open

                                    $this->db->quoteString($mime_ext),
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Space after opening parenthesis of function call prohibited
                        Open

                                $ret->addOptionArray( $this->GetSelectList($criteria) );
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Opening brace should be on a new line
                        Open

                            function XoopsFormSelectType( $caption, $name, $value=null, $size=1, $multiple=false ) {
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        No space found after comma in function call
                        Open

                                $this->initVar('mperm_id',XOBJ_DTYPE_INT,0,true,10);
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        No space found after comma in function call
                        Open

                                $this->initVar('mperm_groups'  ,XOBJ_DTYPE_TXTAREA,'',false,0);
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        No space found after comma in function call
                        Open

                                $this->initVar('mperm_status'  ,XOBJ_DTYPE_INT,0,true,1);
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Expected 0 spaces before closing bracket; 1 found
                        Open

                                $ret->addOptionArray( $this->Get_TypeList() );
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Expected 0 spaces after opening bracket; 1 found
                        Open

                                while ( $myrow = $this->db->fetchArray($result) ) {
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Opening brace should be on a new line
                        Open

                            function insert(&$mimetype_object, $force = false) {
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Opening brace should be on a new line
                        Open

                            function setErrors($err_str) {
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        No space found after comma in function call
                        Open

                                $this->initVar('mperm_mime',XOBJ_DTYPE_INT,0,true,11);
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Closing parenthesis of a multi-line function call must be on a line by itself
                        Open

                                    $mime_status);
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Multi-line function call not indented correctly; expected 16 spaces but found 12
                        Open

                                    $mime_status,
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Opening brace should be on a new line
                        Open

                            function &GetSelectList($criteria = null) {
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Expected 0 spaces before closing bracket; 1 found
                        Open

                                $ret->addOptionArray( $this->GetSelectList($criteria) );
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Expected 0 spaces after opening bracket; 1 found
                        Open

                                    if ( !$asobject ) {
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Space after opening parenthesis of function call prohibited
                        Open

                                        $ret[] = new xoopsmimetypes( $myrow );
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Expected 0 spaces after opening bracket; 1 found
                        Open

                                            if ( !in_array ($type, $ret) ) {
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Opening brace should be on a new line
                        Open

                            function getHtmlErrors() {
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Class name "XoopsMimetypes_perms" is not in camel caps format
                        Open

                        class XoopsMimetypes_perms extends XoopsObject {
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        No space found after comma in function call
                        Open

                                $this->initVar('mperm_id',XOBJ_DTYPE_INT,0,true,10);
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Opening brace should be on a new line
                        Open

                            function Get_TypeList() {
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Expected 0 spaces after opening bracket; 1 found
                        Open

                                    foreach ( $mime_types as $mime_type ) {
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Space after opening parenthesis of function call prohibited
                        Open

                                        if ( $type = substr( $mime_type, 0, strpos($mime_type, '/') ) ) {
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        No space found after comma in function call
                        Open

                                $this->initVar('mperm_status'  ,XOBJ_DTYPE_INT,0,true,1);
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        No space found after comma in function call
                        Open

                                $this->initVar('mime_name',XOBJ_DTYPE_TXTBOX,'',true,255);
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Opening brace should be on a new line
                        Open

                            function mime_ext($format='S') {
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        No space found after comma in function call
                        Open

                                $this->initVar('mperm_maxwidth'  ,XOBJ_DTYPE_INT,0,true,4);
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        No space found after comma in function call
                        Open

                                $this->initVar('mperm_maxwidth'  ,XOBJ_DTYPE_INT,0,true,4);
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        No space found after comma in function call
                        Open

                                $this->initVar('mperm_maxheight',XOBJ_DTYPE_INT,0,true,4);
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        No space found after comma in function call
                        Open

                                $this->initVar('mime_ext',XOBJ_DTYPE_TXTBOX,'',true,10);
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Opening brace should be on a new line
                        Open

                            function mperm_maxheight() {
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        No space found after comma in function call
                        Open

                                $this->initVar('mime_name',XOBJ_DTYPE_TXTBOX,'',true,255);
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Opening brace should be on a new line
                        Open

                            function load($module_id) {
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Opening brace should be on a new line
                        Open

                            function mime_groups() {
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Opening brace should be on a new line
                        Open

                            function mperm_maxwidth() {
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Opening brace should be on a new line
                        Open

                            function GetGroups() {
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        No space found after comma in function call
                        Open

                                $this->initVar('mime_ext',XOBJ_DTYPE_TXTBOX,'',true,10);
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        No space found after comma in function call
                        Open

                                $this->initVar('mperm_maxwidth'  ,XOBJ_DTYPE_INT,0,true,4);
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Opening brace should be on a new line
                        Open

                            function mperm_mime() {
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Opening brace should be on a new line
                        Open

                            function mperm_module() {
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Opening brace should be on a new line
                        Open

                            function mime_module($format='S') {
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        No space found after comma in function call
                        Open

                                $this->initVar('mperm_maxheight',XOBJ_DTYPE_INT,0,true,4);
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        No space found after comma in function call
                        Open

                                $this->initVar('mime_name',XOBJ_DTYPE_TXTBOX,'',true,255);
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        No space found after comma in function call
                        Open

                                $this->initVar('mperm_maxheight',XOBJ_DTYPE_INT,0,true,4);
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        No space found after comma in function call
                        Open

                                $this->initVar('mperm_maxheight',XOBJ_DTYPE_INT,0,true,4);
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        No space found after comma in function call
                        Open

                                $this->initVar('mperm_maxsize'  ,XOBJ_DTYPE_INT,0,true,8);
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        No space found after comma in function call
                        Open

                                $this->initVar('mod_name',XOBJ_DTYPE_TXTBOX,'',true,255);
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Expected 0 spaces after opening bracket; 1 found
                        Open

                                if ( !empty($mperm_id) ) {
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Opening brace should be on a new line
                        Open

                            function mperm_maxsize() {
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        No space found after comma in function call
                        Open

                                $this->initVar('mperm_maxwidth'  ,XOBJ_DTYPE_INT,0,true,4);
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        No space found after comma in function call
                        Open

                                $this->initVar('mod_name',XOBJ_DTYPE_TXTBOX,'',true,255);
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        No space found after comma in function call
                        Open

                                $this->initVar('mperm_maxsize'  ,XOBJ_DTYPE_INT,0,true,8);
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Expected 0 spaces after opening bracket; 1 found
                        Open

                                    if ( is_array($mperm_id) ) {
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Opening brace should be on a new line
                        Open

                            function mime_name($format='S') {
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        No space found after comma in function call
                        Open

                                $this->initVar('mperm_maxsize'  ,XOBJ_DTYPE_INT,0,true,8);
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        No space found after comma in function call
                        Open

                                $this->initVar('mperm_maxsize'  ,XOBJ_DTYPE_INT,0,true,8);
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        No space found after comma in function call
                        Open

                                $this->initVar('mime_ext',XOBJ_DTYPE_TXTBOX,'',true,10);
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        No space found after comma in function call
                        Open

                                $this->initVar('mime_name',XOBJ_DTYPE_TXTBOX,'',true,255);
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        No space found after comma in function call
                        Open

                                $this->initVar('mod_name',XOBJ_DTYPE_TXTBOX,'',true,255);
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Opening brace should be on a new line
                        Open

                            function mperm_status() {
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        No space found after comma in function call
                        Open

                                $this->initVar('mime_ext',XOBJ_DTYPE_TXTBOX,'',true,10);
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Opening brace should be on a new line
                        Open

                            function mime_id() {
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        No space found after comma in function call
                        Open

                                $this->initVar('mod_name',XOBJ_DTYPE_TXTBOX,'',true,255);
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Expected 0 spaces after opening bracket; 1 found
                        Open

                                while ( $myrow = $this->db->fetchArray($result) ) {
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Expected 0 spaces after opening bracket; 1 found
                        Open

                                } elseif ( isset($module) && ($module != -1) ) {
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Space after opening parenthesis of function call prohibited
                        Open

                                        $ret[] = new xoopsmimetypes_perms( $myrow );
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Space after opening parenthesis of function call prohibited
                        Open

                                        $ret[] = new xoopsmimetypes_perms( $myrow );
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Expected 0 spaces before closing bracket; 1 found
                        Open

                                $module = $module_handler->get( $mid );
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Expected 0 spaces after opening bracket; 1 found
                        Open

                                    if ( !$asobject ) {
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Opening brace should be on a new line
                        Open

                            function getCount($criteria = null, $notNullFields='') {
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Space after opening parenthesis of function call prohibited
                        Open

                                $module = $module_handler->get( $mid );
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Expected 0 spaces before closing bracket; 1 found
                        Open

                                        $ret[] = new xoopsmimetypes_perms( $myrow );
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Expected 0 spaces before closing bracket; 1 found
                        Open

                                        $ret[] = new xoopsmimetypes_perms( $myrow );
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Class name "XoopsMimetypes_permsHandler" is not in camel caps format
                        Open

                        class XoopsMimetypes_permsHandler extends XoopsObjectHandler {
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Expected 0 spaces after opening bracket; 1 found
                        Open

                                while ( $myrow = $this->db->fetchArray($result) ) {
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Opening brace should be on a new line
                        Open

                            function mime_module( $mid ) {
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Opening brace should be on a new line
                        Open

                            function get_mimetypes($limit=20, $start=0, $module=-1, $OtherCriteria=null, $asobject=true) {
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Expected 0 spaces after opening bracket; 1 found
                        Open

                                    if ( !$asobject ) {
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Opening brace should be on a new line
                        Open

                            function get_byMimeModule( $mime_id, $mid, $asobject=true) {
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Expected 0 spaces after opening bracket; 1 found
                        Open

                                if ( isset($module) && (is_array($module)) ) {
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Expected 0 spaces after opening bracket; 1 found
                        Open

                                if ( is_object($OtherCriteria) ) {
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Expected 0 spaces after opening bracket; 1 found
                        Open

                                while ( $myrow = $this->db->fetchArray($result) ) {
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Expected 0 spaces before closing bracket; 1 found
                        Open

                                    $mimetype_object->assignVar('mime_id', $this->db->getInsertId() );
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Expected 0 spaces before closing bracket; 1 found
                        Open

                                    $this->setErrors($this->db->error() );
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Opening parenthesis of a multi-line function call must be the last content on the line
                        Open

                                    $sql = sprintf($format ,
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Multi-line function call not indented correctly; expected 16 spaces but found 12
                        Open

                                    $mperm_maxwidth,
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Multi-line function call not indented correctly; expected 16 spaces but found 12
                        Open

                                    $this->db->prefix('mimetypes_perms'),
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Multi-line function call not indented correctly; expected 16 spaces but found 12
                        Open

                                    $mperm_module,
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Multi-line function call not indented correctly; expected 16 spaces but found 12
                        Open

                                    $mperm_groups,
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Closing parenthesis of a multi-line function call must be on a line by itself
                        Open

                                    $mperm_maxsize );
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Multi-line function call not indented correctly; expected 16 spaces but found 12
                        Open

                                    $mperm_module,
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Multi-line function call not indented correctly; expected 16 spaces but found 12
                        Open

                                    $mperm_maxwidth,
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Multi-line function call not indented correctly; expected 16 spaces but found 12
                        Open

                                    $this->db->quoteString($mperm_groups),
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Multi-line function call not indented correctly; expected 16 spaces but found 12
                        Open

                                    $mperm_mime,
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Opening parenthesis of a multi-line function call must be the last content on the line
                        Open

                                    $sql = sprintf($format, $this->db->prefix('mimetypes_perms'),
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Closing parenthesis of a multi-line function call must be on a line by itself
                        Open

                                    $mperm_id);
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Opening brace should be on a new line
                        Open

                            function deletebyMime(&$mimetype_object, $force = false) {
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Multi-line function call not indented correctly; expected 16 spaces but found 12
                        Open

                                    $mperm_status,
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Multi-line function call not indented correctly; expected 16 spaces but found 12
                        Open

                                    $mperm_maxheight,
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Multi-line function call not indented correctly; expected 16 spaces but found 12
                        Open

                                    $mperm_maxsize,
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Opening brace should be on a new line
                        Open

                            function delete(&$mimetype_object, $force = false) {
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Opening brace should be on a new line
                        Open

                            function deletebyMimeModule(&$mimetype_object, $force = false) {
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Opening brace should be on a new line
                        Open

                            function deletebyModule(&$mimetype_object, $force = false) {
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Multi-line function call not indented correctly; expected 16 spaces but found 12
                        Open

                                    $mperm_mime,
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Opening brace should be on a new line
                        Open

                            function insert(&$mimetype_object, $force = false) {
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Multi-line function call not indented correctly; expected 16 spaces but found 12
                        Open

                                    $mperm_id,
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Expected 0 spaces before closing bracket; 1 found
                        Open

                                    $this->setErrors($this->db->error() );
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Expected 0 spaces before closing bracket; 1 found
                        Open

                                    $this->setErrors($this->db->error() );
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Multi-line function call not indented correctly; expected 16 spaces but found 12
                        Open

                                    $mperm_status,
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Multi-line function call not indented correctly; expected 16 spaces but found 12
                        Open

                                    $mperm_maxheight,
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Expected 0 spaces before closing bracket; 1 found
                        Open

                                    $this->setErrors($this->db->error() );
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        No space found after comma in function call
                        Open

                                    if (count(array_intersect($groups,$mperm_groups)) > 0) {
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        No space found after comma in function call
                        Open

                                        $tmp = array_intersect($allowedMimeTypes,$mime_types);
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Expected 0 spaces before closing bracket; 1 found
                        Open

                                    $this->setErrors($this->db->error() );
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Expected 0 spaces after opening bracket; 1 found
                        Open

                                while ( $myrow = $this->db->fetchArray($result) ) {
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        No space found after comma in function call
                        Open

                                    $mperm_groups = explode('|',$myrow['mperm_groups']);
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Expected 1 newline at end of file; 0 found
                        Open

                        ?>
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        A closing tag is not permitted at the end of a PHP file
                        Open

                        ?>
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        No space found after comma in function call
                        Open

                                        $mime_types = explode('|',$myrow['mime_types']);
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Opening brace should be on a new line
                        Open

                            function setErrors($err_str) {
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Expected 0 spaces after opening bracket; 1 found
                        Open

                                if ( count($ret) == 0 ) {
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Opening brace should be on a new line
                        Open

                            function allowedMimeTypes( $mid, $groups, $allowedMimeTypes ) {
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Space before opening parenthesis of function call prohibited
                        Open

                                            $ret = array_merge ($ret, $tmp);
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Opening brace should be on a new line
                        Open

                            function getHtmlErrors() {
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Space after opening parenthesis of function call prohibited
                        Open

                                    @$ret = include( XOOPS_ROOT_PATH . '/class/mimetypes.inc.php' );
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        Expected 0 spaces before closing bracket; 1 found
                        Open

                                    @$ret = include( XOOPS_ROOT_PATH . '/class/mimetypes.inc.php' );
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpcodesniffer

                        The variable $mime_id is not named in camelCase.
                        Open

                            function xoopsmimetypes ($mime_id=null) {
                                $this->db = Database::getInstance();
                                $this->initVar('mime_id',XOBJ_DTYPE_INT,0,true,11);
                                $this->initVar('mime_ext',XOBJ_DTYPE_TXTBOX,'',true,10);
                                $this->initVar('mime_types',XOBJ_DTYPE_TXTAREA,'',true,0);
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpmd

                        CamelCaseVariableName

                        Since: 0.2

                        It is considered best practice to use the camelCase notation to name variables.

                        Example

                        class ClassName {
                            public function doSomething() {
                                $data_module = new DataModule();
                            }
                        }

                        Source

                        The variable $mperm_id is not named in camelCase.
                        Open

                            function xoopsmimetypes_perms ($mperm_id=null) {
                                $this->db = Database::getInstance();
                                $this->initVar('mperm_id',XOBJ_DTYPE_INT,0,true,10);
                                $this->initVar('mperm_mime',XOBJ_DTYPE_INT,0,true,11);
                                $this->initVar('mperm_module'  ,XOBJ_DTYPE_INT,0,true,5);
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpmd

                        CamelCaseVariableName

                        Since: 0.2

                        It is considered best practice to use the camelCase notation to name variables.

                        Example

                        class ClassName {
                            public function doSomething() {
                                $data_module = new DataModule();
                            }
                        }

                        Source

                        The variable $mime_id is not named in camelCase.
                        Open

                            function xoopsmimetypes ($mime_id=null) {
                                $this->db = Database::getInstance();
                                $this->initVar('mime_id',XOBJ_DTYPE_INT,0,true,11);
                                $this->initVar('mime_ext',XOBJ_DTYPE_TXTBOX,'',true,10);
                                $this->initVar('mime_types',XOBJ_DTYPE_TXTAREA,'',true,0);
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpmd

                        CamelCaseVariableName

                        Since: 0.2

                        It is considered best practice to use the camelCase notation to name variables.

                        Example

                        class ClassName {
                            public function doSomething() {
                                $data_module = new DataModule();
                            }
                        }

                        Source

                        The variable $mime_name is not named in camelCase.
                        Open

                            function insert(&$mimetype_object, $force = false) {
                                if (strtolower(get_class($mimetype_object)) != 'xoopsmimetypes') {
                                    return false;
                                }
                                if (!$mimetype_object->isDirty()) {
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpmd

                        CamelCaseVariableName

                        Since: 0.2

                        It is considered best practice to use the camelCase notation to name variables.

                        Example

                        class ClassName {
                            public function doSomething() {
                                $data_module = new DataModule();
                            }
                        }

                        Source

                        The variable $mimetype_object is not named in camelCase.
                        Open

                            function delete(&$mimetype_object, $force = false) {
                                if (strtolower(get_class($mimetype_object)) != 'xoopsmimetypes') {
                                    return false;
                                }
                        
                        
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpmd

                        CamelCaseVariableName

                        Since: 0.2

                        It is considered best practice to use the camelCase notation to name variables.

                        Example

                        class ClassName {
                            public function doSomething() {
                                $data_module = new DataModule();
                            }
                        }

                        Source

                        The variable $err_str is not named in camelCase.
                        Open

                            function setErrors($err_str) {
                                $this->_errors[] = trim($err_str);
                            }
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpmd

                        CamelCaseVariableName

                        Since: 0.2

                        It is considered best practice to use the camelCase notation to name variables.

                        Example

                        class ClassName {
                            public function doSomething() {
                                $data_module = new DataModule();
                            }
                        }

                        Source

                        The variable $mime_id is not named in camelCase.
                        Open

                            function xoopsmimetypes ($mime_id=null) {
                                $this->db = Database::getInstance();
                                $this->initVar('mime_id',XOBJ_DTYPE_INT,0,true,11);
                                $this->initVar('mime_ext',XOBJ_DTYPE_TXTBOX,'',true,10);
                                $this->initVar('mime_types',XOBJ_DTYPE_TXTAREA,'',true,0);
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpmd

                        CamelCaseVariableName

                        Since: 0.2

                        It is considered best practice to use the camelCase notation to name variables.

                        Example

                        class ClassName {
                            public function doSomething() {
                                $data_module = new DataModule();
                            }
                        }

                        Source

                        The variable $mimetype_object is not named in camelCase.
                        Open

                            function insert(&$mimetype_object, $force = false) {
                                if (strtolower(get_class($mimetype_object)) != 'xoopsmimetypes') {
                                    return false;
                                }
                                if (!$mimetype_object->isDirty()) {
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpmd

                        CamelCaseVariableName

                        Since: 0.2

                        It is considered best practice to use the camelCase notation to name variables.

                        Example

                        class ClassName {
                            public function doSomething() {
                                $data_module = new DataModule();
                            }
                        }

                        Source

                        The variable $mimetype_object is not named in camelCase.
                        Open

                            function insert(&$mimetype_object, $force = false) {
                                if (strtolower(get_class($mimetype_object)) != 'xoopsmimetypes_perms') {
                                    return false;
                                }
                                if (!$mimetype_object->isDirty()) {
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpmd

                        CamelCaseVariableName

                        Since: 0.2

                        It is considered best practice to use the camelCase notation to name variables.

                        Example

                        class ClassName {
                            public function doSomething() {
                                $data_module = new DataModule();
                            }
                        }

                        Source

                        The variable $mperm_groups is not named in camelCase.
                        Open

                            function insert(&$mimetype_object, $force = false) {
                                if (strtolower(get_class($mimetype_object)) != 'xoopsmimetypes_perms') {
                                    return false;
                                }
                                if (!$mimetype_object->isDirty()) {
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpmd

                        CamelCaseVariableName

                        Since: 0.2

                        It is considered best practice to use the camelCase notation to name variables.

                        Example

                        class ClassName {
                            public function doSomething() {
                                $data_module = new DataModule();
                            }
                        }

                        Source

                        The variable $mimetype_object is not named in camelCase.
                        Open

                            function insert(&$mimetype_object, $force = false) {
                                if (strtolower(get_class($mimetype_object)) != 'xoopsmimetypes_perms') {
                                    return false;
                                }
                                if (!$mimetype_object->isDirty()) {
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpmd

                        CamelCaseVariableName

                        Since: 0.2

                        It is considered best practice to use the camelCase notation to name variables.

                        Example

                        class ClassName {
                            public function doSomething() {
                                $data_module = new DataModule();
                            }
                        }

                        Source

                        The variable $mimetype_object is not named in camelCase.
                        Open

                            function insert(&$mimetype_object, $force = false) {
                                if (strtolower(get_class($mimetype_object)) != 'xoopsmimetypes') {
                                    return false;
                                }
                                if (!$mimetype_object->isDirty()) {
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpmd

                        CamelCaseVariableName

                        Since: 0.2

                        It is considered best practice to use the camelCase notation to name variables.

                        Example

                        class ClassName {
                            public function doSomething() {
                                $data_module = new DataModule();
                            }
                        }

                        Source

                        The variable $mime_ext is not named in camelCase.
                        Open

                            function insert(&$mimetype_object, $force = false) {
                                if (strtolower(get_class($mimetype_object)) != 'xoopsmimetypes') {
                                    return false;
                                }
                                if (!$mimetype_object->isDirty()) {
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpmd

                        CamelCaseVariableName

                        Since: 0.2

                        It is considered best practice to use the camelCase notation to name variables.

                        Example

                        class ClassName {
                            public function doSomething() {
                                $data_module = new DataModule();
                            }
                        }

                        Source

                        The variable $mime_type is not named in camelCase.
                        Open

                            function Get_TypeList() {
                                $ret = array();
                                $sql = 'SELECT * FROM ' . $this->db->prefix("mimetypes") ;
                        
                                $result = $this->db->query($sql);
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpmd

                        CamelCaseVariableName

                        Since: 0.2

                        It is considered best practice to use the camelCase notation to name variables.

                        Example

                        class ClassName {
                            public function doSomething() {
                                $data_module = new DataModule();
                            }
                        }

                        Source

                        The variable $mimetype_object is not named in camelCase.
                        Open

                            function insert(&$mimetype_object, $force = false) {
                                if (strtolower(get_class($mimetype_object)) != 'xoopsmimetypes_perms') {
                                    return false;
                                }
                                if (!$mimetype_object->isDirty()) {
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpmd

                        CamelCaseVariableName

                        Since: 0.2

                        It is considered best practice to use the camelCase notation to name variables.

                        Example

                        class ClassName {
                            public function doSomething() {
                                $data_module = new DataModule();
                            }
                        }

                        Source

                        The variable $mime_ext is not named in camelCase.
                        Open

                            function load_byExt($mime_ext) {
                                $sql = 'SELECT * FROM '.$this->db->prefix('mimetypes').' WHERE mime_ext=' . $this->db->quoteString($mime_ext);
                                $myrow = $this->db->fetchArray($this->db->query($sql));
                                $this->assignVars($myrow);
                                if (!$myrow) {
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpmd

                        CamelCaseVariableName

                        Since: 0.2

                        It is considered best practice to use the camelCase notation to name variables.

                        Example

                        class ClassName {
                            public function doSomething() {
                                $data_module = new DataModule();
                            }
                        }

                        Source

                        The variable $mime_types is not named in camelCase.
                        Open

                            function insert(&$mimetype_object, $force = false) {
                                if (strtolower(get_class($mimetype_object)) != 'xoopsmimetypes') {
                                    return false;
                                }
                                if (!$mimetype_object->isDirty()) {
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpmd

                        CamelCaseVariableName

                        Since: 0.2

                        It is considered best practice to use the camelCase notation to name variables.

                        Example

                        class ClassName {
                            public function doSomething() {
                                $data_module = new DataModule();
                            }
                        }

                        Source

                        The variable $mime_types is not named in camelCase.
                        Open

                            function insert(&$mimetype_object, $force = false) {
                                if (strtolower(get_class($mimetype_object)) != 'xoopsmimetypes') {
                                    return false;
                                }
                                if (!$mimetype_object->isDirty()) {
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpmd

                        CamelCaseVariableName

                        Since: 0.2

                        It is considered best practice to use the camelCase notation to name variables.

                        Example

                        class ClassName {
                            public function doSomething() {
                                $data_module = new DataModule();
                            }
                        }

                        Source

                        The variable $mimetype_object is not named in camelCase.
                        Open

                            function insert(&$mimetype_object, $force = false) {
                                if (strtolower(get_class($mimetype_object)) != 'xoopsmimetypes') {
                                    return false;
                                }
                                if (!$mimetype_object->isDirty()) {
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpmd

                        CamelCaseVariableName

                        Since: 0.2

                        It is considered best practice to use the camelCase notation to name variables.

                        Example

                        class ClassName {
                            public function doSomething() {
                                $data_module = new DataModule();
                            }
                        }

                        Source

                        The variable $mimetype_object is not named in camelCase.
                        Open

                            function delete(&$mimetype_object, $force = false) {
                                if (strtolower(get_class($mimetype_object)) != 'xoopsmimetypes') {
                                    return false;
                                }
                        
                        
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpmd

                        CamelCaseVariableName

                        Since: 0.2

                        It is considered best practice to use the camelCase notation to name variables.

                        Example

                        class ClassName {
                            public function doSomething() {
                                $data_module = new DataModule();
                            }
                        }

                        Source

                        The variable $mimetype_object is not named in camelCase.
                        Open

                            function insert(&$mimetype_object, $force = false) {
                                if (strtolower(get_class($mimetype_object)) != 'xoopsmimetypes_perms') {
                                    return false;
                                }
                                if (!$mimetype_object->isDirty()) {
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpmd

                        CamelCaseVariableName

                        Since: 0.2

                        It is considered best practice to use the camelCase notation to name variables.

                        Example

                        class ClassName {
                            public function doSomething() {
                                $data_module = new DataModule();
                            }
                        }

                        Source

                        The variable $mimetype_object is not named in camelCase.
                        Open

                            function deletebyModule(&$mimetype_object, $force = false) {
                                if (strtolower(get_class($mimetype_object)) != 'xoopsmimetypes_perms') {
                                    return false;
                                }
                        
                        
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpmd

                        CamelCaseVariableName

                        Since: 0.2

                        It is considered best practice to use the camelCase notation to name variables.

                        Example

                        class ClassName {
                            public function doSomething() {
                                $data_module = new DataModule();
                            }
                        }

                        Source

                        The variable $mperm_groups is not named in camelCase.
                        Open

                            function allowedMimeTypes( $mid, $groups, $allowedMimeTypes ) {
                                $ret = array();
                                $sql = 'SELECT p.mperm_groups, t.mime_ext, t.mime_types FROM ' . $this->db->prefix('mimetypes_perms') . ' p LEFT JOIN ' .
                                $this->db->prefix("mimetypes") . ' t on p.mperm_mime = t.mime_id WHERE mperm_module=' . $mid;
                        
                        
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpmd

                        CamelCaseVariableName

                        Since: 0.2

                        It is considered best practice to use the camelCase notation to name variables.

                        Example

                        class ClassName {
                            public function doSomething() {
                                $data_module = new DataModule();
                            }
                        }

                        Source

                        The variable $mime_types is not named in camelCase.
                        Open

                            function allowedMimeTypes( $mid, $groups, $allowedMimeTypes ) {
                                $ret = array();
                                $sql = 'SELECT p.mperm_groups, t.mime_ext, t.mime_types FROM ' . $this->db->prefix('mimetypes_perms') . ' p LEFT JOIN ' .
                                $this->db->prefix("mimetypes") . ' t on p.mperm_mime = t.mime_id WHERE mperm_module=' . $mid;
                        
                        
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpmd

                        CamelCaseVariableName

                        Since: 0.2

                        It is considered best practice to use the camelCase notation to name variables.

                        Example

                        class ClassName {
                            public function doSomething() {
                                $data_module = new DataModule();
                            }
                        }

                        Source

                        The variable $mimetype_object is not named in camelCase.
                        Open

                            function insert(&$mimetype_object, $force = false) {
                                if (strtolower(get_class($mimetype_object)) != 'xoopsmimetypes_perms') {
                                    return false;
                                }
                                if (!$mimetype_object->isDirty()) {
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpmd

                        CamelCaseVariableName

                        Since: 0.2

                        It is considered best practice to use the camelCase notation to name variables.

                        Example

                        class ClassName {
                            public function doSomething() {
                                $data_module = new DataModule();
                            }
                        }

                        Source

                        The variable $mperm_groups is not named in camelCase.
                        Open

                            function insert(&$mimetype_object, $force = false) {
                                if (strtolower(get_class($mimetype_object)) != 'xoopsmimetypes_perms') {
                                    return false;
                                }
                                if (!$mimetype_object->isDirty()) {
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpmd

                        CamelCaseVariableName

                        Since: 0.2

                        It is considered best practice to use the camelCase notation to name variables.

                        Example

                        class ClassName {
                            public function doSomething() {
                                $data_module = new DataModule();
                            }
                        }

                        Source

                        The variable $mimetype_object is not named in camelCase.
                        Open

                            function insert(&$mimetype_object, $force = false) {
                                if (strtolower(get_class($mimetype_object)) != 'xoopsmimetypes_perms') {
                                    return false;
                                }
                                if (!$mimetype_object->isDirty()) {
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpmd

                        CamelCaseVariableName

                        Since: 0.2

                        It is considered best practice to use the camelCase notation to name variables.

                        Example

                        class ClassName {
                            public function doSomething() {
                                $data_module = new DataModule();
                            }
                        }

                        Source

                        The variable $mimetype_object is not named in camelCase.
                        Open

                            function deletebyMime(&$mimetype_object, $force = false) {
                                if (strtolower(get_class($mimetype_object)) != 'xoopsmimetypes_perms') {
                                    return false;
                                }
                                $sql = sprintf("DELETE FROM %s WHERE mperm_mime = %u", $this->db->prefix("mimetypes_perms"), $mimetype_object->getVar('mperm_mime'));
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpmd

                        CamelCaseVariableName

                        Since: 0.2

                        It is considered best practice to use the camelCase notation to name variables.

                        Example

                        class ClassName {
                            public function doSomething() {
                                $data_module = new DataModule();
                            }
                        }

                        Source

                        The variable $mime_id is not named in camelCase.
                        Open

                            function xoopsmimetypes ($mime_id=null) {
                                $this->db = Database::getInstance();
                                $this->initVar('mime_id',XOBJ_DTYPE_INT,0,true,11);
                                $this->initVar('mime_ext',XOBJ_DTYPE_TXTBOX,'',true,10);
                                $this->initVar('mime_types',XOBJ_DTYPE_TXTAREA,'',true,0);
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpmd

                        CamelCaseVariableName

                        Since: 0.2

                        It is considered best practice to use the camelCase notation to name variables.

                        Example

                        class ClassName {
                            public function doSomething() {
                                $data_module = new DataModule();
                            }
                        }

                        Source

                        The variable $mime_status is not named in camelCase.
                        Open

                            function insert(&$mimetype_object, $force = false) {
                                if (strtolower(get_class($mimetype_object)) != 'xoopsmimetypes') {
                                    return false;
                                }
                                if (!$mimetype_object->isDirty()) {
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpmd

                        CamelCaseVariableName

                        Since: 0.2

                        It is considered best practice to use the camelCase notation to name variables.

                        Example

                        class ClassName {
                            public function doSomething() {
                                $data_module = new DataModule();
                            }
                        }

                        Source

                        The variable $mimetype_object is not named in camelCase.
                        Open

                            function insert(&$mimetype_object, $force = false) {
                                if (strtolower(get_class($mimetype_object)) != 'xoopsmimetypes') {
                                    return false;
                                }
                                if (!$mimetype_object->isDirty()) {
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpmd

                        CamelCaseVariableName

                        Since: 0.2

                        It is considered best practice to use the camelCase notation to name variables.

                        Example

                        class ClassName {
                            public function doSomething() {
                                $data_module = new DataModule();
                            }
                        }

                        Source

                        The variable $module_handler is not named in camelCase.
                        Open

                            function mime_module( $mid ) {
                                $module_handler =& xoops_gethandler('module');
                                $module = $module_handler->get( $mid );
                                return $module->name();
                            }
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpmd

                        CamelCaseVariableName

                        Since: 0.2

                        It is considered best practice to use the camelCase notation to name variables.

                        Example

                        class ClassName {
                            public function doSomething() {
                                $data_module = new DataModule();
                            }
                        }

                        Source

                        The variable $mperm_module is not named in camelCase.
                        Open

                            function insert(&$mimetype_object, $force = false) {
                                if (strtolower(get_class($mimetype_object)) != 'xoopsmimetypes_perms') {
                                    return false;
                                }
                                if (!$mimetype_object->isDirty()) {
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpmd

                        CamelCaseVariableName

                        Since: 0.2

                        It is considered best practice to use the camelCase notation to name variables.

                        Example

                        class ClassName {
                            public function doSomething() {
                                $data_module = new DataModule();
                            }
                        }

                        Source

                        The variable $mperm_mime is not named in camelCase.
                        Open

                            function insert(&$mimetype_object, $force = false) {
                                if (strtolower(get_class($mimetype_object)) != 'xoopsmimetypes_perms') {
                                    return false;
                                }
                                if (!$mimetype_object->isDirty()) {
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpmd

                        CamelCaseVariableName

                        Since: 0.2

                        It is considered best practice to use the camelCase notation to name variables.

                        Example

                        class ClassName {
                            public function doSomething() {
                                $data_module = new DataModule();
                            }
                        }

                        Source

                        The variable $mimetype_object is not named in camelCase.
                        Open

                            function deletebyMimeModule(&$mimetype_object, $force = false) {
                                if (strtolower(get_class($mimetype_object)) != 'xoopsmimetypes_perms') {
                                    return false;
                                }
                                $sql = sprintf("DELETE FROM %s WHERE mperm_mime = %u AND mperm_module = %u", $this->db->prefix("mimetypes_perms"), $mimetype_object->getVar('mperm_mime'), $mimetype_object->getVar('mperm_module'));
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpmd

                        CamelCaseVariableName

                        Since: 0.2

                        It is considered best practice to use the camelCase notation to name variables.

                        Example

                        class ClassName {
                            public function doSomething() {
                                $data_module = new DataModule();
                            }
                        }

                        Source

                        The variable $OtherCriteria is not named in camelCase.
                        Open

                            function get_mimetypes($limit=20, $start=0, $status=-1, $OtherCriteria=null, $sort='mime_ext', $order='ASC', $asobject=true) {
                                $ret = array();
                                $criteria = new CriteriaCompo();
                        
                                if ( is_object($OtherCriteria) ) {
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpmd

                        CamelCaseVariableName

                        Since: 0.2

                        It is considered best practice to use the camelCase notation to name variables.

                        Example

                        class ClassName {
                            public function doSomething() {
                                $data_module = new DataModule();
                            }
                        }

                        Source

                        The variable $OtherCriteria is not named in camelCase.
                        Open

                            function get_mimetypes($limit=20, $start=0, $status=-1, $OtherCriteria=null, $sort='mime_ext', $order='ASC', $asobject=true) {
                                $ret = array();
                                $criteria = new CriteriaCompo();
                        
                                if ( is_object($OtherCriteria) ) {
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpmd

                        CamelCaseVariableName

                        Since: 0.2

                        It is considered best practice to use the camelCase notation to name variables.

                        Example

                        class ClassName {
                            public function doSomething() {
                                $data_module = new DataModule();
                            }
                        }

                        Source

                        The variable $mimetype_object is not named in camelCase.
                        Open

                            function delete(&$mimetype_object, $force = false) {
                                if (strtolower(get_class($mimetype_object)) != 'xoopsmimetypes') {
                                    return false;
                                }
                        
                        
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpmd

                        CamelCaseVariableName

                        Since: 0.2

                        It is considered best practice to use the camelCase notation to name variables.

                        Example

                        class ClassName {
                            public function doSomething() {
                                $data_module = new DataModule();
                            }
                        }

                        Source

                        The variable $module_id is not named in camelCase.
                        Open

                            function load($module_id) {
                                $sql = 'SELECT p.*, t.mime_ext, t.mime_name, m.name FROM ' . $this->db->prefix('mimetypes_perms') . ' p LEFT JOIN ' .
                                $this->db->prefix("mimetypes") . ' t on p.mperm_mime = t.mime_id LEFT JOIN ' .
                                $this->db->prefix("modules") . ' m on p.mperm_module = m.mid' . ' WHERE mperm_id=' . $this->db->quoteString($module_id);
                        
                        
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpmd

                        CamelCaseVariableName

                        Since: 0.2

                        It is considered best practice to use the camelCase notation to name variables.

                        Example

                        class ClassName {
                            public function doSomething() {
                                $data_module = new DataModule();
                            }
                        }

                        Source

                        The variable $mimetype_object is not named in camelCase.
                        Open

                            function deletebyMime(&$mimetype_object, $force = false) {
                                if (strtolower(get_class($mimetype_object)) != 'xoopsmimetypes_perms') {
                                    return false;
                                }
                                $sql = sprintf("DELETE FROM %s WHERE mperm_mime = %u", $this->db->prefix("mimetypes_perms"), $mimetype_object->getVar('mperm_mime'));
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpmd

                        CamelCaseVariableName

                        Since: 0.2

                        It is considered best practice to use the camelCase notation to name variables.

                        Example

                        class ClassName {
                            public function doSomething() {
                                $data_module = new DataModule();
                            }
                        }

                        Source

                        The variable $mimetype_object is not named in camelCase.
                        Open

                            function insert(&$mimetype_object, $force = false) {
                                if (strtolower(get_class($mimetype_object)) != 'xoopsmimetypes') {
                                    return false;
                                }
                                if (!$mimetype_object->isDirty()) {
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpmd

                        CamelCaseVariableName

                        Since: 0.2

                        It is considered best practice to use the camelCase notation to name variables.

                        Example

                        class ClassName {
                            public function doSomething() {
                                $data_module = new DataModule();
                            }
                        }

                        Source

                        The variable $mperm_id is not named in camelCase.
                        Open

                            function xoopsmimetypes_perms ($mperm_id=null) {
                                $this->db = Database::getInstance();
                                $this->initVar('mperm_id',XOBJ_DTYPE_INT,0,true,10);
                                $this->initVar('mperm_mime',XOBJ_DTYPE_INT,0,true,11);
                                $this->initVar('mperm_module'  ,XOBJ_DTYPE_INT,0,true,5);
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpmd

                        CamelCaseVariableName

                        Since: 0.2

                        It is considered best practice to use the camelCase notation to name variables.

                        Example

                        class ClassName {
                            public function doSomething() {
                                $data_module = new DataModule();
                            }
                        }

                        Source

                        The variable $OtherCriteria is not named in camelCase.
                        Open

                            function get_mimetypes($limit=20, $start=0, $module=-1, $OtherCriteria=null, $asobject=true) {
                                $ret = array();
                                $criteria = new CriteriaCompo();
                                if ( is_object($OtherCriteria) ) {
                                    $criteria->add($OtherCriteria, 'AND');
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpmd

                        CamelCaseVariableName

                        Since: 0.2

                        It is considered best practice to use the camelCase notation to name variables.

                        Example

                        class ClassName {
                            public function doSomething() {
                                $data_module = new DataModule();
                            }
                        }

                        Source

                        The variable $mperm_maxwidth is not named in camelCase.
                        Open

                            function insert(&$mimetype_object, $force = false) {
                                if (strtolower(get_class($mimetype_object)) != 'xoopsmimetypes_perms') {
                                    return false;
                                }
                                if (!$mimetype_object->isDirty()) {
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpmd

                        CamelCaseVariableName

                        Since: 0.2

                        It is considered best practice to use the camelCase notation to name variables.

                        Example

                        class ClassName {
                            public function doSomething() {
                                $data_module = new DataModule();
                            }
                        }

                        Source

                        The variable $mimetype_object is not named in camelCase.
                        Open

                            function delete(&$mimetype_object, $force = false) {
                                if (strtolower(get_class($mimetype_object)) != 'xoopsmimetypes_perms') {
                                    return false;
                                }
                                $sql = sprintf("DELETE FROM %s WHERE mperm_id = %u", $this->db->prefix("mimetypes_perms"), $mimetype_object->getVar('mperm_id'));
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpmd

                        CamelCaseVariableName

                        Since: 0.2

                        It is considered best practice to use the camelCase notation to name variables.

                        Example

                        class ClassName {
                            public function doSomething() {
                                $data_module = new DataModule();
                            }
                        }

                        Source

                        The variable $mimetype_object is not named in camelCase.
                        Open

                            function insert(&$mimetype_object, $force = false) {
                                if (strtolower(get_class($mimetype_object)) != 'xoopsmimetypes') {
                                    return false;
                                }
                                if (!$mimetype_object->isDirty()) {
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpmd

                        CamelCaseVariableName

                        Since: 0.2

                        It is considered best practice to use the camelCase notation to name variables.

                        Example

                        class ClassName {
                            public function doSomething() {
                                $data_module = new DataModule();
                            }
                        }

                        Source

                        The variable $mimetype_object is not named in camelCase.
                        Open

                            function insert(&$mimetype_object, $force = false) {
                                if (strtolower(get_class($mimetype_object)) != 'xoopsmimetypes') {
                                    return false;
                                }
                                if (!$mimetype_object->isDirty()) {
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpmd

                        CamelCaseVariableName

                        Since: 0.2

                        It is considered best practice to use the camelCase notation to name variables.

                        Example

                        class ClassName {
                            public function doSomething() {
                                $data_module = new DataModule();
                            }
                        }

                        Source

                        The variable $mime_id is not named in camelCase.
                        Open

                            function insert(&$mimetype_object, $force = false) {
                                if (strtolower(get_class($mimetype_object)) != 'xoopsmimetypes') {
                                    return false;
                                }
                                if (!$mimetype_object->isDirty()) {
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpmd

                        CamelCaseVariableName

                        Since: 0.2

                        It is considered best practice to use the camelCase notation to name variables.

                        Example

                        class ClassName {
                            public function doSomething() {
                                $data_module = new DataModule();
                            }
                        }

                        Source

                        The variable $mime_id is not named in camelCase.
                        Open

                            function insert(&$mimetype_object, $force = false) {
                                if (strtolower(get_class($mimetype_object)) != 'xoopsmimetypes') {
                                    return false;
                                }
                                if (!$mimetype_object->isDirty()) {
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpmd

                        CamelCaseVariableName

                        Since: 0.2

                        It is considered best practice to use the camelCase notation to name variables.

                        Example

                        class ClassName {
                            public function doSomething() {
                                $data_module = new DataModule();
                            }
                        }

                        Source

                        The variable $mime_type is not named in camelCase.
                        Open

                            function Get_TypeList() {
                                $ret = array();
                                $sql = 'SELECT * FROM ' . $this->db->prefix("mimetypes") ;
                        
                                $result = $this->db->query($sql);
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpmd

                        CamelCaseVariableName

                        Since: 0.2

                        It is considered best practice to use the camelCase notation to name variables.

                        Example

                        class ClassName {
                            public function doSomething() {
                                $data_module = new DataModule();
                            }
                        }

                        Source

                        The variable $module_handler is not named in camelCase.
                        Open

                            function mime_module( $mid ) {
                                $module_handler =& xoops_gethandler('module');
                                $module = $module_handler->get( $mid );
                                return $module->name();
                            }
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpmd

                        CamelCaseVariableName

                        Since: 0.2

                        It is considered best practice to use the camelCase notation to name variables.

                        Example

                        class ClassName {
                            public function doSomething() {
                                $data_module = new DataModule();
                            }
                        }

                        Source

                        The variable $mperm_mime is not named in camelCase.
                        Open

                            function insert(&$mimetype_object, $force = false) {
                                if (strtolower(get_class($mimetype_object)) != 'xoopsmimetypes_perms') {
                                    return false;
                                }
                                if (!$mimetype_object->isDirty()) {
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpmd

                        CamelCaseVariableName

                        Since: 0.2

                        It is considered best practice to use the camelCase notation to name variables.

                        Example

                        class ClassName {
                            public function doSomething() {
                                $data_module = new DataModule();
                            }
                        }

                        Source

                        The variable $mime_ext is not named in camelCase.
                        Open

                            function get_byExt( $mime_ext, $asobject=true ) {
                                $ret = array();
                                $sql = 'SELECT * FROM ' . $this->db->prefix('mimetypes') . ' WHERE mime_ext = ' . $this->db->quoteString($mime_ext);
                        
                                $result = $this->db->query($sql);
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpmd

                        CamelCaseVariableName

                        Since: 0.2

                        It is considered best practice to use the camelCase notation to name variables.

                        Example

                        class ClassName {
                            public function doSomething() {
                                $data_module = new DataModule();
                            }
                        }

                        Source

                        The variable $mime_name is not named in camelCase.
                        Open

                            function insert(&$mimetype_object, $force = false) {
                                if (strtolower(get_class($mimetype_object)) != 'xoopsmimetypes') {
                                    return false;
                                }
                                if (!$mimetype_object->isDirty()) {
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpmd

                        CamelCaseVariableName

                        Since: 0.2

                        It is considered best practice to use the camelCase notation to name variables.

                        Example

                        class ClassName {
                            public function doSomething() {
                                $data_module = new DataModule();
                            }
                        }

                        Source

                        The variable $mime_status is not named in camelCase.
                        Open

                            function insert(&$mimetype_object, $force = false) {
                                if (strtolower(get_class($mimetype_object)) != 'xoopsmimetypes') {
                                    return false;
                                }
                                if (!$mimetype_object->isDirty()) {
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpmd

                        CamelCaseVariableName

                        Since: 0.2

                        It is considered best practice to use the camelCase notation to name variables.

                        Example

                        class ClassName {
                            public function doSomething() {
                                $data_module = new DataModule();
                            }
                        }

                        Source

                        The variable $mperm_id is not named in camelCase.
                        Open

                            function xoopsmimetypes_perms ($mperm_id=null) {
                                $this->db = Database::getInstance();
                                $this->initVar('mperm_id',XOBJ_DTYPE_INT,0,true,10);
                                $this->initVar('mperm_mime',XOBJ_DTYPE_INT,0,true,11);
                                $this->initVar('mperm_module'  ,XOBJ_DTYPE_INT,0,true,5);
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpmd

                        CamelCaseVariableName

                        Since: 0.2

                        It is considered best practice to use the camelCase notation to name variables.

                        Example

                        class ClassName {
                            public function doSomething() {
                                $data_module = new DataModule();
                            }
                        }

                        Source

                        The variable $mime_id is not named in camelCase.
                        Open

                            function get_byMimeModule( $mime_id, $mid, $asobject=true) {
                                $ret = array();
                                $sql = 'SELECT * FROM ' . $this->db->prefix('mimetypes_perms') . ' WHERE mperm_mime = ' . $mime_id . ' AND mperm_module = ' . $mid;
                                $result = $this->db->query($sql);
                                if (!$result) {
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpmd

                        CamelCaseVariableName

                        Since: 0.2

                        It is considered best practice to use the camelCase notation to name variables.

                        Example

                        class ClassName {
                            public function doSomething() {
                                $data_module = new DataModule();
                            }
                        }

                        Source

                        The variable $mperm_maxwidth is not named in camelCase.
                        Open

                            function insert(&$mimetype_object, $force = false) {
                                if (strtolower(get_class($mimetype_object)) != 'xoopsmimetypes_perms') {
                                    return false;
                                }
                                if (!$mimetype_object->isDirty()) {
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpmd

                        CamelCaseVariableName

                        Since: 0.2

                        It is considered best practice to use the camelCase notation to name variables.

                        Example

                        class ClassName {
                            public function doSomething() {
                                $data_module = new DataModule();
                            }
                        }

                        Source

                        The variable $mperm_module is not named in camelCase.
                        Open

                            function insert(&$mimetype_object, $force = false) {
                                if (strtolower(get_class($mimetype_object)) != 'xoopsmimetypes_perms') {
                                    return false;
                                }
                                if (!$mimetype_object->isDirty()) {
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpmd

                        CamelCaseVariableName

                        Since: 0.2

                        It is considered best practice to use the camelCase notation to name variables.

                        Example

                        class ClassName {
                            public function doSomething() {
                                $data_module = new DataModule();
                            }
                        }

                        Source

                        The variable $mimetype_object is not named in camelCase.
                        Open

                            function deletebyModule(&$mimetype_object, $force = false) {
                                if (strtolower(get_class($mimetype_object)) != 'xoopsmimetypes_perms') {
                                    return false;
                                }
                        
                        
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpmd

                        CamelCaseVariableName

                        Since: 0.2

                        It is considered best practice to use the camelCase notation to name variables.

                        Example

                        class ClassName {
                            public function doSomething() {
                                $data_module = new DataModule();
                            }
                        }

                        Source

                        The variable $mimetype_object is not named in camelCase.
                        Open

                            function insert(&$mimetype_object, $force = false) {
                                if (strtolower(get_class($mimetype_object)) != 'xoopsmimetypes') {
                                    return false;
                                }
                                if (!$mimetype_object->isDirty()) {
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpmd

                        CamelCaseVariableName

                        Since: 0.2

                        It is considered best practice to use the camelCase notation to name variables.

                        Example

                        class ClassName {
                            public function doSomething() {
                                $data_module = new DataModule();
                            }
                        }

                        Source

                        The variable $mimetype_object is not named in camelCase.
                        Open

                            function delete(&$mimetype_object, $force = false) {
                                if (strtolower(get_class($mimetype_object)) != 'xoopsmimetypes_perms') {
                                    return false;
                                }
                                $sql = sprintf("DELETE FROM %s WHERE mperm_id = %u", $this->db->prefix("mimetypes_perms"), $mimetype_object->getVar('mperm_id'));
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpmd

                        CamelCaseVariableName

                        Since: 0.2

                        It is considered best practice to use the camelCase notation to name variables.

                        Example

                        class ClassName {
                            public function doSomething() {
                                $data_module = new DataModule();
                            }
                        }

                        Source

                        The variable $OtherCriteria is not named in camelCase.
                        Open

                            function get_mimetypes($limit=20, $start=0, $module=-1, $OtherCriteria=null, $asobject=true) {
                                $ret = array();
                                $criteria = new CriteriaCompo();
                                if ( is_object($OtherCriteria) ) {
                                    $criteria->add($OtherCriteria, 'AND');
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpmd

                        CamelCaseVariableName

                        Since: 0.2

                        It is considered best practice to use the camelCase notation to name variables.

                        Example

                        class ClassName {
                            public function doSomething() {
                                $data_module = new DataModule();
                            }
                        }

                        Source

                        The variable $mperm_maxheight is not named in camelCase.
                        Open

                            function insert(&$mimetype_object, $force = false) {
                                if (strtolower(get_class($mimetype_object)) != 'xoopsmimetypes_perms') {
                                    return false;
                                }
                                if (!$mimetype_object->isDirty()) {
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpmd

                        CamelCaseVariableName

                        Since: 0.2

                        It is considered best practice to use the camelCase notation to name variables.

                        Example

                        class ClassName {
                            public function doSomething() {
                                $data_module = new DataModule();
                            }
                        }

                        Source

                        The variable $mperm_id is not named in camelCase.
                        Open

                            function insert(&$mimetype_object, $force = false) {
                                if (strtolower(get_class($mimetype_object)) != 'xoopsmimetypes_perms') {
                                    return false;
                                }
                                if (!$mimetype_object->isDirty()) {
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpmd

                        CamelCaseVariableName

                        Since: 0.2

                        It is considered best practice to use the camelCase notation to name variables.

                        Example

                        class ClassName {
                            public function doSomething() {
                                $data_module = new DataModule();
                            }
                        }

                        Source

                        The variable $mperm_maxsize is not named in camelCase.
                        Open

                            function insert(&$mimetype_object, $force = false) {
                                if (strtolower(get_class($mimetype_object)) != 'xoopsmimetypes_perms') {
                                    return false;
                                }
                                if (!$mimetype_object->isDirty()) {
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpmd

                        CamelCaseVariableName

                        Since: 0.2

                        It is considered best practice to use the camelCase notation to name variables.

                        Example

                        class ClassName {
                            public function doSomething() {
                                $data_module = new DataModule();
                            }
                        }

                        Source

                        The variable $mimetype_object is not named in camelCase.
                        Open

                            function deletebyModule(&$mimetype_object, $force = false) {
                                if (strtolower(get_class($mimetype_object)) != 'xoopsmimetypes_perms') {
                                    return false;
                                }
                        
                        
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpmd

                        CamelCaseVariableName

                        Since: 0.2

                        It is considered best practice to use the camelCase notation to name variables.

                        Example

                        class ClassName {
                            public function doSomething() {
                                $data_module = new DataModule();
                            }
                        }

                        Source

                        The variable $mperm_groups is not named in camelCase.
                        Open

                            function allowedMimeTypes( $mid, $groups, $allowedMimeTypes ) {
                                $ret = array();
                                $sql = 'SELECT p.mperm_groups, t.mime_ext, t.mime_types FROM ' . $this->db->prefix('mimetypes_perms') . ' p LEFT JOIN ' .
                                $this->db->prefix("mimetypes") . ' t on p.mperm_mime = t.mime_id WHERE mperm_module=' . $mid;
                        
                        
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpmd

                        CamelCaseVariableName

                        Since: 0.2

                        It is considered best practice to use the camelCase notation to name variables.

                        Example

                        class ClassName {
                            public function doSomething() {
                                $data_module = new DataModule();
                            }
                        }

                        Source

                        The variable $err_str is not named in camelCase.
                        Open

                            function setErrors($err_str) {
                                $this->_errors[] = trim($err_str);
                            }
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpmd

                        CamelCaseVariableName

                        Since: 0.2

                        It is considered best practice to use the camelCase notation to name variables.

                        Example

                        class ClassName {
                            public function doSomething() {
                                $data_module = new DataModule();
                            }
                        }

                        Source

                        The variable $mime_id is not named in camelCase.
                        Open

                            function load($mime_id) {
                                $sql = 'SELECT * FROM '.$this->db->prefix('mimetypes').' WHERE mime_id='.$mime_id;
                                $myrow = $this->db->fetchArray($this->db->query($sql));
                                $this->assignVars($myrow);
                                if (!$myrow) {
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpmd

                        CamelCaseVariableName

                        Since: 0.2

                        It is considered best practice to use the camelCase notation to name variables.

                        Example

                        class ClassName {
                            public function doSomething() {
                                $data_module = new DataModule();
                            }
                        }

                        Source

                        The variable $mperm_maxsize is not named in camelCase.
                        Open

                            function insert(&$mimetype_object, $force = false) {
                                if (strtolower(get_class($mimetype_object)) != 'xoopsmimetypes_perms') {
                                    return false;
                                }
                                if (!$mimetype_object->isDirty()) {
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpmd

                        CamelCaseVariableName

                        Since: 0.2

                        It is considered best practice to use the camelCase notation to name variables.

                        Example

                        class ClassName {
                            public function doSomething() {
                                $data_module = new DataModule();
                            }
                        }

                        Source

                        The variable $mperm_maxheight is not named in camelCase.
                        Open

                            function insert(&$mimetype_object, $force = false) {
                                if (strtolower(get_class($mimetype_object)) != 'xoopsmimetypes_perms') {
                                    return false;
                                }
                                if (!$mimetype_object->isDirty()) {
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpmd

                        CamelCaseVariableName

                        Since: 0.2

                        It is considered best practice to use the camelCase notation to name variables.

                        Example

                        class ClassName {
                            public function doSomething() {
                                $data_module = new DataModule();
                            }
                        }

                        Source

                        The variable $mimetype_object is not named in camelCase.
                        Open

                            function deletebyMimeModule(&$mimetype_object, $force = false) {
                                if (strtolower(get_class($mimetype_object)) != 'xoopsmimetypes_perms') {
                                    return false;
                                }
                                $sql = sprintf("DELETE FROM %s WHERE mperm_mime = %u AND mperm_module = %u", $this->db->prefix("mimetypes_perms"), $mimetype_object->getVar('mperm_mime'), $mimetype_object->getVar('mperm_module'));
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpmd

                        CamelCaseVariableName

                        Since: 0.2

                        It is considered best practice to use the camelCase notation to name variables.

                        Example

                        class ClassName {
                            public function doSomething() {
                                $data_module = new DataModule();
                            }
                        }

                        Source

                        The variable $mimetype_object is not named in camelCase.
                        Open

                            function deletebyMimeModule(&$mimetype_object, $force = false) {
                                if (strtolower(get_class($mimetype_object)) != 'xoopsmimetypes_perms') {
                                    return false;
                                }
                                $sql = sprintf("DELETE FROM %s WHERE mperm_mime = %u AND mperm_module = %u", $this->db->prefix("mimetypes_perms"), $mimetype_object->getVar('mperm_mime'), $mimetype_object->getVar('mperm_module'));
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpmd

                        CamelCaseVariableName

                        Since: 0.2

                        It is considered best practice to use the camelCase notation to name variables.

                        Example

                        class ClassName {
                            public function doSomething() {
                                $data_module = new DataModule();
                            }
                        }

                        Source

                        The variable $mime_types is not named in camelCase.
                        Open

                            function Get_TypeList() {
                                $ret = array();
                                $sql = 'SELECT * FROM ' . $this->db->prefix("mimetypes") ;
                        
                                $result = $this->db->query($sql);
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpmd

                        CamelCaseVariableName

                        Since: 0.2

                        It is considered best practice to use the camelCase notation to name variables.

                        Example

                        class ClassName {
                            public function doSomething() {
                                $data_module = new DataModule();
                            }
                        }

                        Source

                        The variable $mimetype_object is not named in camelCase.
                        Open

                            function insert(&$mimetype_object, $force = false) {
                                if (strtolower(get_class($mimetype_object)) != 'xoopsmimetypes_perms') {
                                    return false;
                                }
                                if (!$mimetype_object->isDirty()) {
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpmd

                        CamelCaseVariableName

                        Since: 0.2

                        It is considered best practice to use the camelCase notation to name variables.

                        Example

                        class ClassName {
                            public function doSomething() {
                                $data_module = new DataModule();
                            }
                        }

                        Source

                        The variable $mimetype_object is not named in camelCase.
                        Open

                            function insert(&$mimetype_object, $force = false) {
                                if (strtolower(get_class($mimetype_object)) != 'xoopsmimetypes_perms') {
                                    return false;
                                }
                                if (!$mimetype_object->isDirty()) {
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpmd

                        CamelCaseVariableName

                        Since: 0.2

                        It is considered best practice to use the camelCase notation to name variables.

                        Example

                        class ClassName {
                            public function doSomething() {
                                $data_module = new DataModule();
                            }
                        }

                        Source

                        The variable $mperm_status is not named in camelCase.
                        Open

                            function insert(&$mimetype_object, $force = false) {
                                if (strtolower(get_class($mimetype_object)) != 'xoopsmimetypes_perms') {
                                    return false;
                                }
                                if (!$mimetype_object->isDirty()) {
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpmd

                        CamelCaseVariableName

                        Since: 0.2

                        It is considered best practice to use the camelCase notation to name variables.

                        Example

                        class ClassName {
                            public function doSomething() {
                                $data_module = new DataModule();
                            }
                        }

                        Source

                        The variable $mperm_status is not named in camelCase.
                        Open

                            function insert(&$mimetype_object, $force = false) {
                                if (strtolower(get_class($mimetype_object)) != 'xoopsmimetypes_perms') {
                                    return false;
                                }
                                if (!$mimetype_object->isDirty()) {
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpmd

                        CamelCaseVariableName

                        Since: 0.2

                        It is considered best practice to use the camelCase notation to name variables.

                        Example

                        class ClassName {
                            public function doSomething() {
                                $data_module = new DataModule();
                            }
                        }

                        Source

                        The variable $mime_types is not named in camelCase.
                        Open

                            function allowedMimeTypes( $mid, $groups, $allowedMimeTypes ) {
                                $ret = array();
                                $sql = 'SELECT p.mperm_groups, t.mime_ext, t.mime_types FROM ' . $this->db->prefix('mimetypes_perms') . ' p LEFT JOIN ' .
                                $this->db->prefix("mimetypes") . ' t on p.mperm_mime = t.mime_id WHERE mperm_module=' . $mid;
                        
                        
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpmd

                        CamelCaseVariableName

                        Since: 0.2

                        It is considered best practice to use the camelCase notation to name variables.

                        Example

                        class ClassName {
                            public function doSomething() {
                                $data_module = new DataModule();
                            }
                        }

                        Source

                        The variable $mime_types is not named in camelCase.
                        Open

                            function Get_TypeList() {
                                $ret = array();
                                $sql = 'SELECT * FROM ' . $this->db->prefix("mimetypes") ;
                        
                                $result = $this->db->query($sql);
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpmd

                        CamelCaseVariableName

                        Since: 0.2

                        It is considered best practice to use the camelCase notation to name variables.

                        Example

                        class ClassName {
                            public function doSomething() {
                                $data_module = new DataModule();
                            }
                        }

                        Source

                        The variable $mime_type is not named in camelCase.
                        Open

                            function Get_TypeList() {
                                $ret = array();
                                $sql = 'SELECT * FROM ' . $this->db->prefix("mimetypes") ;
                        
                                $result = $this->db->query($sql);
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpmd

                        CamelCaseVariableName

                        Since: 0.2

                        It is considered best practice to use the camelCase notation to name variables.

                        Example

                        class ClassName {
                            public function doSomething() {
                                $data_module = new DataModule();
                            }
                        }

                        Source

                        The variable $mperm_id is not named in camelCase.
                        Open

                            function xoopsmimetypes_perms ($mperm_id=null) {
                                $this->db = Database::getInstance();
                                $this->initVar('mperm_id',XOBJ_DTYPE_INT,0,true,10);
                                $this->initVar('mperm_mime',XOBJ_DTYPE_INT,0,true,11);
                                $this->initVar('mperm_module'  ,XOBJ_DTYPE_INT,0,true,5);
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpmd

                        CamelCaseVariableName

                        Since: 0.2

                        It is considered best practice to use the camelCase notation to name variables.

                        Example

                        class ClassName {
                            public function doSomething() {
                                $data_module = new DataModule();
                            }
                        }

                        Source

                        The variable $mperm_id is not named in camelCase.
                        Open

                            function insert(&$mimetype_object, $force = false) {
                                if (strtolower(get_class($mimetype_object)) != 'xoopsmimetypes_perms') {
                                    return false;
                                }
                                if (!$mimetype_object->isDirty()) {
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpmd

                        CamelCaseVariableName

                        Since: 0.2

                        It is considered best practice to use the camelCase notation to name variables.

                        Example

                        class ClassName {
                            public function doSomething() {
                                $data_module = new DataModule();
                            }
                        }

                        Source

                        The variable $mime_ext is not named in camelCase.
                        Open

                            function insert(&$mimetype_object, $force = false) {
                                if (strtolower(get_class($mimetype_object)) != 'xoopsmimetypes') {
                                    return false;
                                }
                                if (!$mimetype_object->isDirty()) {
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpmd

                        CamelCaseVariableName

                        Since: 0.2

                        It is considered best practice to use the camelCase notation to name variables.

                        Example

                        class ClassName {
                            public function doSomething() {
                                $data_module = new DataModule();
                            }
                        }

                        Source

                        The method load_byExt is not named in camelCase.
                        Open

                            function load_byExt($mime_ext) {
                                $sql = 'SELECT * FROM '.$this->db->prefix('mimetypes').' WHERE mime_ext=' . $this->db->quoteString($mime_ext);
                                $myrow = $this->db->fetchArray($this->db->query($sql));
                                $this->assignVars($myrow);
                                if (!$myrow) {
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpmd

                        CamelCaseMethodName

                        Since: 0.2

                        It is considered best practice to use the camelCase notation to name methods.

                        Example

                        class ClassName {
                            public function get_name() {
                            }
                        }

                        Source

                        The method XoopsFormSelectMime is not named in camelCase.
                        Open

                            function XoopsFormSelectMime( $caption, $name, $value=null, $size=1, $multiple=false ) {
                                $ret = new XoopsFormSelect($caption, $name, $value, $size, $multiple);
                                $criteria = new CriteriaCompo();
                                $criteria->setSort('mime_ext');
                                $ret->addOptionArray( $this->GetSelectList($criteria) );
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpmd

                        CamelCaseMethodName

                        Since: 0.2

                        It is considered best practice to use the camelCase notation to name methods.

                        Example

                        class ClassName {
                            public function get_name() {
                            }
                        }

                        Source

                        The method mime_id is not named in camelCase.
                        Open

                            function mime_id() {
                                return $this->getVar('mime_id');
                            }
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpmd

                        CamelCaseMethodName

                        Since: 0.2

                        It is considered best practice to use the camelCase notation to name methods.

                        Example

                        class ClassName {
                            public function get_name() {
                            }
                        }

                        Source

                        The method get_mimetypes is not named in camelCase.
                        Open

                            function get_mimetypes($limit=20, $start=0, $status=-1, $OtherCriteria=null, $sort='mime_ext', $order='ASC', $asobject=true) {
                                $ret = array();
                                $criteria = new CriteriaCompo();
                        
                                if ( is_object($OtherCriteria) ) {
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpmd

                        CamelCaseMethodName

                        Since: 0.2

                        It is considered best practice to use the camelCase notation to name methods.

                        Example

                        class ClassName {
                            public function get_name() {
                            }
                        }

                        Source

                        The method mime_ext is not named in camelCase.
                        Open

                            function mime_ext($format='S') {
                                $ret = $this->getVar('mime_ext', $format);
                                if (($format=='s') || ($format=='S') || ($format=='show')) {
                                    $myts = &MyTextSanitizer::getInstance();
                                    $ret = $myts->displayTarea($ret);
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpmd

                        CamelCaseMethodName

                        Since: 0.2

                        It is considered best practice to use the camelCase notation to name methods.

                        Example

                        class ClassName {
                            public function get_name() {
                            }
                        }

                        Source

                        The method mime_id is not named in camelCase.
                        Open

                            function mime_id() {
                                return $this->getVar('mperm_id');
                            }
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpmd

                        CamelCaseMethodName

                        Since: 0.2

                        It is considered best practice to use the camelCase notation to name methods.

                        Example

                        class ClassName {
                            public function get_name() {
                            }
                        }

                        Source

                        The method get_mimetypes is not named in camelCase.
                        Open

                            function get_mimetypes($limit=20, $start=0, $module=-1, $OtherCriteria=null, $asobject=true) {
                                $ret = array();
                                $criteria = new CriteriaCompo();
                                if ( is_object($OtherCriteria) ) {
                                    $criteria->add($OtherCriteria, 'AND');
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpmd

                        CamelCaseMethodName

                        Since: 0.2

                        It is considered best practice to use the camelCase notation to name methods.

                        Example

                        class ClassName {
                            public function get_name() {
                            }
                        }

                        Source

                        The method get_byMimeModule is not named in camelCase.
                        Open

                            function get_byMimeModule( $mime_id, $mid, $asobject=true) {
                                $ret = array();
                                $sql = 'SELECT * FROM ' . $this->db->prefix('mimetypes_perms') . ' WHERE mperm_mime = ' . $mime_id . ' AND mperm_module = ' . $mid;
                                $result = $this->db->query($sql);
                                if (!$result) {
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpmd

                        CamelCaseMethodName

                        Since: 0.2

                        It is considered best practice to use the camelCase notation to name methods.

                        Example

                        class ClassName {
                            public function get_name() {
                            }
                        }

                        Source

                        The method get_byExt is not named in camelCase.
                        Open

                            function get_byExt( $mime_ext, $asobject=true ) {
                                $ret = array();
                                $sql = 'SELECT * FROM ' . $this->db->prefix('mimetypes') . ' WHERE mime_ext = ' . $this->db->quoteString($mime_ext);
                        
                                $result = $this->db->query($sql);
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpmd

                        CamelCaseMethodName

                        Since: 0.2

                        It is considered best practice to use the camelCase notation to name methods.

                        Example

                        class ClassName {
                            public function get_name() {
                            }
                        }

                        Source

                        The method mperm_maxsize is not named in camelCase.
                        Open

                            function mperm_maxsize() {
                                return $this->getVar('mperm_maxsize');
                            }
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpmd

                        CamelCaseMethodName

                        Since: 0.2

                        It is considered best practice to use the camelCase notation to name methods.

                        Example

                        class ClassName {
                            public function get_name() {
                            }
                        }

                        Source

                        The method mime_name is not named in camelCase.
                        Open

                            function mime_name($format='S') {
                                $ret = $this->getVar('mime_name', $format);
                                if (($format=='s') || ($format=='S') || ($format=='show')) {
                                    $myts = &MyTextSanitizer::getInstance();
                                    $ret = $myts->displayTarea($ret);
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpmd

                        CamelCaseMethodName

                        Since: 0.2

                        It is considered best practice to use the camelCase notation to name methods.

                        Example

                        class ClassName {
                            public function get_name() {
                            }
                        }

                        Source

                        The method mperm_mime is not named in camelCase.
                        Open

                            function mperm_mime() {
                                return $this->getVar('mperm_mime');
                            }
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpmd

                        CamelCaseMethodName

                        Since: 0.2

                        It is considered best practice to use the camelCase notation to name methods.

                        Example

                        class ClassName {
                            public function get_name() {
                            }
                        }

                        Source

                        The method mperm_maxheight is not named in camelCase.
                        Open

                            function mperm_maxheight() {
                                return $this->getVar('mperm_maxheight');
                            }
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpmd

                        CamelCaseMethodName

                        Since: 0.2

                        It is considered best practice to use the camelCase notation to name methods.

                        Example

                        class ClassName {
                            public function get_name() {
                            }
                        }

                        Source

                        The method mime_module is not named in camelCase.
                        Open

                            function mime_module( $mid ) {
                                $module_handler =& xoops_gethandler('module');
                                $module = $module_handler->get( $mid );
                                return $module->name();
                            }
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpmd

                        CamelCaseMethodName

                        Since: 0.2

                        It is considered best practice to use the camelCase notation to name methods.

                        Example

                        class ClassName {
                            public function get_name() {
                            }
                        }

                        Source

                        The method mperm_maxwidth is not named in camelCase.
                        Open

                            function mperm_maxwidth() {
                                return $this->getVar('mperm_maxwidth');
                            }
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpmd

                        CamelCaseMethodName

                        Since: 0.2

                        It is considered best practice to use the camelCase notation to name methods.

                        Example

                        class ClassName {
                            public function get_name() {
                            }
                        }

                        Source

                        The method xoopsmimetypes_perms is not named in camelCase.
                        Open

                            function xoopsmimetypes_perms ($mperm_id=null) {
                                $this->db = Database::getInstance();
                                $this->initVar('mperm_id',XOBJ_DTYPE_INT,0,true,10);
                                $this->initVar('mperm_mime',XOBJ_DTYPE_INT,0,true,11);
                                $this->initVar('mperm_module'  ,XOBJ_DTYPE_INT,0,true,5);
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpmd

                        CamelCaseMethodName

                        Since: 0.2

                        It is considered best practice to use the camelCase notation to name methods.

                        Example

                        class ClassName {
                            public function get_name() {
                            }
                        }

                        Source

                        The method mime_groups is not named in camelCase.
                        Open

                            function mime_groups() {
                                return $this->getVar('mperm_groups');
                            }
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpmd

                        CamelCaseMethodName

                        Since: 0.2

                        It is considered best practice to use the camelCase notation to name methods.

                        Example

                        class ClassName {
                            public function get_name() {
                            }
                        }

                        Source

                        The method GetGroups is not named in camelCase.
                        Open

                            function GetGroups() {
                                $groups = array();
                                $sql = 'SELECT p.mperm_groups FROM ' . $this->db->prefix('mimetypes_perms') . ' p LEFT JOIN ' .
                                $this->db->prefix("mimetypes") . ' t on p.mperm_mime = t.mime_id ' . ' WHERE mperm_module=' . $this->mperm_module() . ' AND mperm_mime=' . $this->mperm_mime();
                                $result = $this->db->query($sql);
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpmd

                        CamelCaseMethodName

                        Since: 0.2

                        It is considered best practice to use the camelCase notation to name methods.

                        Example

                        class ClassName {
                            public function get_name() {
                            }
                        }

                        Source

                        The method mime_types is not named in camelCase.
                        Open

                            function mime_types($format='S') {
                                $ret = $this->getVar('mime_types', $format);
                                if (($format=='s') || ($format=='S') || ($format=='show')) {
                                    $myts = &MyTextSanitizer::getInstance();
                                    $ret = $myts->displayTarea($ret);
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpmd

                        CamelCaseMethodName

                        Since: 0.2

                        It is considered best practice to use the camelCase notation to name methods.

                        Example

                        class ClassName {
                            public function get_name() {
                            }
                        }

                        Source

                        The method Get_TypeList is not named in camelCase.
                        Open

                            function Get_TypeList() {
                                $ret = array();
                                $sql = 'SELECT * FROM ' . $this->db->prefix("mimetypes") ;
                        
                                $result = $this->db->query($sql);
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpmd

                        CamelCaseMethodName

                        Since: 0.2

                        It is considered best practice to use the camelCase notation to name methods.

                        Example

                        class ClassName {
                            public function get_name() {
                            }
                        }

                        Source

                        The method mime_module is not named in camelCase.
                        Open

                            function mime_module($format='S') {
                                $ret = $this->getVar('name', $format);
                                if (($format=='s') || ($format=='S') || ($format=='show')) {
                                    $myts = &MyTextSanitizer::getInstance();
                                    $ret = $myts->displayTarea($ret);
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpmd

                        CamelCaseMethodName

                        Since: 0.2

                        It is considered best practice to use the camelCase notation to name methods.

                        Example

                        class ClassName {
                            public function get_name() {
                            }
                        }

                        Source

                        The method mime_name is not named in camelCase.
                        Open

                            function mime_name($format='S') {
                                $ret = $this->getVar('mime_name', $format);
                                if (($format=='s') || ($format=='S') || ($format=='show')) {
                                    $myts = &MyTextSanitizer::getInstance();
                                    $ret = $myts->displayTarea($ret);
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpmd

                        CamelCaseMethodName

                        Since: 0.2

                        It is considered best practice to use the camelCase notation to name methods.

                        Example

                        class ClassName {
                            public function get_name() {
                            }
                        }

                        Source

                        The method mperm_status is not named in camelCase.
                        Open

                            function mperm_status() {
                                return $this->getVar('mperm_status');
                            }
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpmd

                        CamelCaseMethodName

                        Since: 0.2

                        It is considered best practice to use the camelCase notation to name methods.

                        Example

                        class ClassName {
                            public function get_name() {
                            }
                        }

                        Source

                        The method GetSelectList is not named in camelCase.
                        Open

                            function &GetSelectList($criteria = null) {
                                $ret = array();
                                $limit = $start = 0;
                                $sql = 'SELECT * FROM '.$this->db->prefix('mimetypes');
                                if (isset($criteria) && is_subclass_of($criteria, 'criteriaelement')) {
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpmd

                        CamelCaseMethodName

                        Since: 0.2

                        It is considered best practice to use the camelCase notation to name methods.

                        Example

                        class ClassName {
                            public function get_name() {
                            }
                        }

                        Source

                        The method mperm_module is not named in camelCase.
                        Open

                            function mperm_module() {
                                return $this->getVar('mperm_module');
                            }
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpmd

                        CamelCaseMethodName

                        Since: 0.2

                        It is considered best practice to use the camelCase notation to name methods.

                        Example

                        class ClassName {
                            public function get_name() {
                            }
                        }

                        Source

                        The method mime_status is not named in camelCase.
                        Open

                            function mime_status() {
                                return $this->getVar('mime_status');
                            }
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpmd

                        CamelCaseMethodName

                        Since: 0.2

                        It is considered best practice to use the camelCase notation to name methods.

                        Example

                        class ClassName {
                            public function get_name() {
                            }
                        }

                        Source

                        The method XoopsFormSelectType is not named in camelCase.
                        Open

                            function XoopsFormSelectType( $caption, $name, $value=null, $size=1, $multiple=false ) {
                                $ret = new XoopsFormSelect($caption, $name, $value, $size, $multiple);
                                $ret->addOptionArray( $this->Get_TypeList() );
                                return $ret;
                            }
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpmd

                        CamelCaseMethodName

                        Since: 0.2

                        It is considered best practice to use the camelCase notation to name methods.

                        Example

                        class ClassName {
                            public function get_name() {
                            }
                        }

                        Source

                        The method mime_ext is not named in camelCase.
                        Open

                            function mime_ext($format='S') {
                                $ret = $this->getVar('mime_ext', $format);
                                if (($format=='s') || ($format=='S') || ($format=='show')) {
                                    $myts = &MyTextSanitizer::getInstance();
                                    $ret = $myts->displayTarea($ret);
                        Severity: Minor
                        Found in kernel/mimetypes.php by phpmd

                        CamelCaseMethodName

                        Since: 0.2

                        It is considered best practice to use the camelCase notation to name methods.

                        Example

                        class ClassName {
                            public function get_name() {
                            }
                        }

                        Source

                        There are no issues that match your filters.

                        Category
                        Status