XoopsModules25x/apcal

View on GitHub
blocks/apcal_monthly_calendar.php

Summary

Maintainability
A
2 hrs
Test Coverage

apcal_monthly_calendar_show accesses the super-global variable $GLOBALS.
Open

    function apcal_monthly_calendar_show($options)
    {
        global $xoopsConfig, $xoopsDB;


Severity: Minor
Found in blocks/apcal_monthly_calendar.php by phpmd

Superglobals

Since: 0.2

Accessing a super-global variable directly is considered a bad practice. These variables should be encapsulated in objects that are provided by a framework, for instance.

Example

class Foo {
    public function bar() {
        $name = $_POST['foo'];
    }
}

Source

Method apcal_monthly_calendar_show has 41 lines of code (exceeds 25 allowed). Consider refactoring.
Open

    function apcal_monthly_calendar_show($options)
    {
        global $xoopsConfig, $xoopsDB;


Severity: Minor
Found in blocks/apcal_monthly_calendar.php - About 1 hr to fix

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

            $cal->images_path = "$mod_path/assets/images/$skin_folder";
    Severity: Minor
    Found in blocks/apcal_monthly_calendar.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 '$block' which will lead to PHP notices.
    Open

            return $block;
    Severity: Minor
    Found in blocks/apcal_monthly_calendar.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 '$block' which will lead to PHP notices.
    Open

            $block['content'] = $tmpl->getParsedTemplate('WholeBoard');
    Severity: Minor
    Found in blocks/apcal_monthly_calendar.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 '$skin_folder' which will lead to PHP notices.
    Open

            $cal->images_url  = "$mod_url/assets/images/$skin_folder";
    Severity: Minor
    Found in blocks/apcal_monthly_calendar.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

    Missing class import via use statement (line '47', column '20').
    Open

            $cal = new APCal_xoops('', $xoopsConfig['language'], true);
    Severity: Minor
    Found in blocks/apcal_monthly_calendar.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 '63', column '21').
    Open

            $tmpl = new PatTemplate();
    Severity: Minor
    Found in blocks/apcal_monthly_calendar.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 unused parameters such as '$options'.
    Open

        function apcal_monthly_calendar_edit($options)
    Severity: Minor
    Found in blocks/apcal_monthly_calendar.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 local variables such as '$xoopsDB'.
    Open

            global $xoopsConfig, $xoopsDB;
    Severity: Minor
    Found in blocks/apcal_monthly_calendar.php by phpmd

    UnusedLocalVariable

    Since: 0.2

    Detects when a local variable is declared and/or assigned, but not used.

    Example

    class Foo {
        public function doSomething()
        {
            $i = 5; // Unused
        }
    }

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

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

            foreach ($cal->long_event_legends as $bit => $legend) {
                $tmpl->addVar('LongEventLegends', 'BIT_MASK', 1 << ($bit - 1));
                $tmpl->addVar('LongEventLegends', 'LEGEND_ALT', _APCAL_MB_ALLDAY_EVENT . " $bit");
                $tmpl->addVar('LongEventLegends', 'LEGEND', $legend);
                $tmpl->addVar('LongEventLegends', 'SKINPATH', $cal->images_url);
    Severity: Major
    Found in blocks/apcal_monthly_calendar.php and 1 other location - About 1 hr to fix
    class/APCal.php on lines 1180..1186

    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 102.

    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

    The variable $mod_path is not named in camelCase.
    Open

        function apcal_monthly_calendar_show($options)
        {
            global $xoopsConfig, $xoopsDB;
    
    
    
    Severity: Minor
    Found in blocks/apcal_monthly_calendar.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 $mod_path is not named in camelCase.
    Open

        function apcal_monthly_calendar_show($options)
        {
            global $xoopsConfig, $xoopsDB;
    
    
    
    Severity: Minor
    Found in blocks/apcal_monthly_calendar.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 $mod_path is not named in camelCase.
    Open

        function apcal_monthly_calendar_show($options)
        {
            global $xoopsConfig, $xoopsDB;
    
    
    
    Severity: Minor
    Found in blocks/apcal_monthly_calendar.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 $mod_url is not named in camelCase.
    Open

        function apcal_monthly_calendar_show($options)
        {
            global $xoopsConfig, $xoopsDB;
    
    
    
    Severity: Minor
    Found in blocks/apcal_monthly_calendar.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 $mod_path is not named in camelCase.
    Open

        function apcal_monthly_calendar_show($options)
        {
            global $xoopsConfig, $xoopsDB;
    
    
    
    Severity: Minor
    Found in blocks/apcal_monthly_calendar.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 $mod_url is not named in camelCase.
    Open

        function apcal_monthly_calendar_show($options)
        {
            global $xoopsConfig, $xoopsDB;
    
    
    
    Severity: Minor
    Found in blocks/apcal_monthly_calendar.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 $mod_path is not named in camelCase.
    Open

        function apcal_monthly_calendar_show($options)
        {
            global $xoopsConfig, $xoopsDB;
    
    
    
    Severity: Minor
    Found in blocks/apcal_monthly_calendar.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 $mod_url is not named in camelCase.
    Open

        function apcal_monthly_calendar_show($options)
        {
            global $xoopsConfig, $xoopsDB;
    
    
    
    Severity: Minor
    Found in blocks/apcal_monthly_calendar.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 $mod_url is not named in camelCase.
    Open

        function apcal_monthly_calendar_show($options)
        {
            global $xoopsConfig, $xoopsDB;
    
    
    
    Severity: Minor
    Found in blocks/apcal_monthly_calendar.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 $original_level is not named in camelCase.
    Open

        function apcal_monthly_calendar_show($options)
        {
            global $xoopsConfig, $xoopsDB;
    
    
    
    Severity: Minor
    Found in blocks/apcal_monthly_calendar.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 $mod_path is not named in camelCase.
    Open

        function apcal_monthly_calendar_show($options)
        {
            global $xoopsConfig, $xoopsDB;
    
    
    
    Severity: Minor
    Found in blocks/apcal_monthly_calendar.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 $skin_folder is not named in camelCase.
    Open

        function apcal_monthly_calendar_show($options)
        {
            global $xoopsConfig, $xoopsDB;
    
    
    
    Severity: Minor
    Found in blocks/apcal_monthly_calendar.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 $skin_folder is not named in camelCase.
    Open

        function apcal_monthly_calendar_show($options)
        {
            global $xoopsConfig, $xoopsDB;
    
    
    
    Severity: Minor
    Found in blocks/apcal_monthly_calendar.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 $mod_path is not named in camelCase.
    Open

        function apcal_monthly_calendar_show($options)
        {
            global $xoopsConfig, $xoopsDB;
    
    
    
    Severity: Minor
    Found in blocks/apcal_monthly_calendar.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 $mod_url is not named in camelCase.
    Open

        function apcal_monthly_calendar_show($options)
        {
            global $xoopsConfig, $xoopsDB;
    
    
    
    Severity: Minor
    Found in blocks/apcal_monthly_calendar.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 $original_level is not named in camelCase.
    Open

        function apcal_monthly_calendar_show($options)
        {
            global $xoopsConfig, $xoopsDB;
    
    
    
    Severity: Minor
    Found in blocks/apcal_monthly_calendar.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

    There are no issues that match your filters.

    Category
    Status