XoopsModules25x/apcal

View on GitHub
blocks/apcal_todays_schedule.php

Summary

Maintainability
D
1 day
Test Coverage

apcal_todays_schedule_show_tpl accesses the super-global variable $GLOBALS.
Open

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

        $moduleDirName = empty($options[0]) ? basename(dirname(__DIR__)) : $options[0];
Severity: Minor
Found in blocks/apcal_todays_schedule.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

apcal_todays_schedule_edit accesses the super-global variable $GLOBALS.
Open

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

        $moduleDirName = empty($options[0]) ? basename(dirname(__DIR__)) : $options[0];
Severity: Minor
Found in blocks/apcal_todays_schedule.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_todays_schedule_edit has 26 lines of code (exceeds 25 allowed). Consider refactoring.
Open

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

        $moduleDirName = empty($options[0]) ? basename(dirname(__DIR__)) : $options[0];
Severity: Minor
Found in blocks/apcal_todays_schedule.php - About 1 hr to fix

    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_todays_schedule.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_todays_schedule.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_path = "$mod_path/assets/images/$skin_folder";
    Severity: Minor
    Found in blocks/apcal_todays_schedule.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_path = "$mod_path/assets/images/$skin_folder";
    Severity: Minor
    Found in blocks/apcal_todays_schedule.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 '86', column '35').
    Open

            $cal                = new APCal_xoops(date('Y-n-j'), $xoopsConfig['language'], true);
    Severity: Minor
    Found in blocks/apcal_todays_schedule.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 '47', column '35').
    Open

            $cal                = new APCal_xoops(date('Y-n-j'), $xoopsConfig['language'], true);
    Severity: Minor
    Found in blocks/apcal_todays_schedule.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 local variables such as '$xoopsDB'.
    Open

            global $xoopsDB, $xoopsConfig;
    Severity: Minor
    Found in blocks/apcal_todays_schedule.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

    Avoid unused local variables such as '$xoopsDB'.
    Open

            global $xoopsConfig, $xoopsDB;
    Severity: Minor
    Found in blocks/apcal_todays_schedule.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

        function apcal_todays_schedule_edit($options)
        {
            global $xoopsDB, $xoopsConfig;
    
            $moduleDirName = empty($options[0]) ? basename(dirname(__DIR__)) : $options[0];
    Severity: Major
    Found in blocks/apcal_todays_schedule.php and 1 other location - About 1 day to fix
    blocks/apcal_thedays_schedule.php on lines 88..129

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

    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 $skin_folder is not named in camelCase.
    Open

        function apcal_todays_schedule_edit($options)
        {
            global $xoopsDB, $xoopsConfig;
    
            $moduleDirName = empty($options[0]) ? basename(dirname(__DIR__)) : $options[0];
    Severity: Minor
    Found in blocks/apcal_todays_schedule.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 $depth_desc is not named in camelCase.
    Open

        function apcal_todays_schedule_edit($options)
        {
            global $xoopsDB, $xoopsConfig;
    
            $moduleDirName = empty($options[0]) ? basename(dirname(__DIR__)) : $options[0];
    Severity: Minor
    Found in blocks/apcal_todays_schedule.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_todays_schedule_show_tpl($options)
        {
            global $xoopsConfig, $xoopsDB;
    
            $moduleDirName = empty($options[0]) ? basename(dirname(__DIR__)) : $options[0];
    Severity: Minor
    Found in blocks/apcal_todays_schedule.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_todays_schedule_show_tpl($options)
        {
            global $xoopsConfig, $xoopsDB;
    
            $moduleDirName = empty($options[0]) ? basename(dirname(__DIR__)) : $options[0];
    Severity: Minor
    Found in blocks/apcal_todays_schedule.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_todays_schedule_show_tpl($options)
        {
            global $xoopsConfig, $xoopsDB;
    
            $moduleDirName = empty($options[0]) ? basename(dirname(__DIR__)) : $options[0];
    Severity: Minor
    Found in blocks/apcal_todays_schedule.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_todays_schedule_show_tpl($options)
        {
            global $xoopsConfig, $xoopsDB;
    
            $moduleDirName = empty($options[0]) ? basename(dirname(__DIR__)) : $options[0];
    Severity: Minor
    Found in blocks/apcal_todays_schedule.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_todays_schedule_edit($options)
        {
            global $xoopsDB, $xoopsConfig;
    
            $moduleDirName = empty($options[0]) ? basename(dirname(__DIR__)) : $options[0];
    Severity: Minor
    Found in blocks/apcal_todays_schedule.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_todays_schedule_show_tpl($options)
        {
            global $xoopsConfig, $xoopsDB;
    
            $moduleDirName = empty($options[0]) ? basename(dirname(__DIR__)) : $options[0];
    Severity: Minor
    Found in blocks/apcal_todays_schedule.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_todays_schedule_show_tpl($options)
        {
            global $xoopsConfig, $xoopsDB;
    
            $moduleDirName = empty($options[0]) ? basename(dirname(__DIR__)) : $options[0];
    Severity: Minor
    Found in blocks/apcal_todays_schedule.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_todays_schedule_show_tpl($options)
        {
            global $xoopsConfig, $xoopsDB;
    
            $moduleDirName = empty($options[0]) ? basename(dirname(__DIR__)) : $options[0];
    Severity: Minor
    Found in blocks/apcal_todays_schedule.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_todays_schedule_edit($options)
        {
            global $xoopsDB, $xoopsConfig;
    
            $moduleDirName = empty($options[0]) ? basename(dirname(__DIR__)) : $options[0];
    Severity: Minor
    Found in blocks/apcal_todays_schedule.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_todays_schedule_show_tpl($options)
        {
            global $xoopsConfig, $xoopsDB;
    
            $moduleDirName = empty($options[0]) ? basename(dirname(__DIR__)) : $options[0];
    Severity: Minor
    Found in blocks/apcal_todays_schedule.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 $cat_title4show is not named in camelCase.
    Open

        function apcal_todays_schedule_edit($options)
        {
            global $xoopsDB, $xoopsConfig;
    
            $moduleDirName = empty($options[0]) ? basename(dirname(__DIR__)) : $options[0];
    Severity: Minor
    Found in blocks/apcal_todays_schedule.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 $now_cid is not named in camelCase.
    Open

        function apcal_todays_schedule_show_tpl($options)
        {
            global $xoopsConfig, $xoopsDB;
    
            $moduleDirName = empty($options[0]) ? basename(dirname(__DIR__)) : $options[0];
    Severity: Minor
    Found in blocks/apcal_todays_schedule.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 $now_cid is not named in camelCase.
    Open

        function apcal_todays_schedule_edit($options)
        {
            global $xoopsDB, $xoopsConfig;
    
            $moduleDirName = empty($options[0]) ? basename(dirname(__DIR__)) : $options[0];
    Severity: Minor
    Found in blocks/apcal_todays_schedule.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_todays_schedule_edit($options)
        {
            global $xoopsDB, $xoopsConfig;
    
            $moduleDirName = empty($options[0]) ? basename(dirname(__DIR__)) : $options[0];
    Severity: Minor
    Found in blocks/apcal_todays_schedule.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 $cat_title4show is not named in camelCase.
    Open

        function apcal_todays_schedule_edit($options)
        {
            global $xoopsDB, $xoopsConfig;
    
            $moduleDirName = empty($options[0]) ? basename(dirname(__DIR__)) : $options[0];
    Severity: Minor
    Found in blocks/apcal_todays_schedule.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_todays_schedule_edit($options)
        {
            global $xoopsDB, $xoopsConfig;
    
            $moduleDirName = empty($options[0]) ? basename(dirname(__DIR__)) : $options[0];
    Severity: Minor
    Found in blocks/apcal_todays_schedule.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_todays_schedule_show_tpl($options)
        {
            global $xoopsConfig, $xoopsDB;
    
            $moduleDirName = empty($options[0]) ? basename(dirname(__DIR__)) : $options[0];
    Severity: Minor
    Found in blocks/apcal_todays_schedule.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_todays_schedule_edit($options)
        {
            global $xoopsDB, $xoopsConfig;
    
            $moduleDirName = empty($options[0]) ? basename(dirname(__DIR__)) : $options[0];
    Severity: Minor
    Found in blocks/apcal_todays_schedule.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_todays_schedule_edit($options)
        {
            global $xoopsDB, $xoopsConfig;
    
            $moduleDirName = empty($options[0]) ? basename(dirname(__DIR__)) : $options[0];
    Severity: Minor
    Found in blocks/apcal_todays_schedule.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_todays_schedule_edit($options)
        {
            global $xoopsDB, $xoopsConfig;
    
            $moduleDirName = empty($options[0]) ? basename(dirname(__DIR__)) : $options[0];
    Severity: Minor
    Found in blocks/apcal_todays_schedule.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_todays_schedule_edit($options)
        {
            global $xoopsDB, $xoopsConfig;
    
            $moduleDirName = empty($options[0]) ? basename(dirname(__DIR__)) : $options[0];
    Severity: Minor
    Found in blocks/apcal_todays_schedule.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 $now_cid is not named in camelCase.
    Open

        function apcal_todays_schedule_show_tpl($options)
        {
            global $xoopsConfig, $xoopsDB;
    
            $moduleDirName = empty($options[0]) ? basename(dirname(__DIR__)) : $options[0];
    Severity: Minor
    Found in blocks/apcal_todays_schedule.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 $now_cid is not named in camelCase.
    Open

        function apcal_todays_schedule_edit($options)
        {
            global $xoopsDB, $xoopsConfig;
    
            $moduleDirName = empty($options[0]) ? basename(dirname(__DIR__)) : $options[0];
    Severity: Minor
    Found in blocks/apcal_todays_schedule.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_todays_schedule_show_tpl($options)
        {
            global $xoopsConfig, $xoopsDB;
    
            $moduleDirName = empty($options[0]) ? basename(dirname(__DIR__)) : $options[0];
    Severity: Minor
    Found in blocks/apcal_todays_schedule.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_todays_schedule_edit($options)
        {
            global $xoopsDB, $xoopsConfig;
    
            $moduleDirName = empty($options[0]) ? basename(dirname(__DIR__)) : $options[0];
    Severity: Minor
    Found in blocks/apcal_todays_schedule.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_todays_schedule_edit($options)
        {
            global $xoopsDB, $xoopsConfig;
    
            $moduleDirName = empty($options[0]) ? basename(dirname(__DIR__)) : $options[0];
    Severity: Minor
    Found in blocks/apcal_todays_schedule.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 $depth_desc is not named in camelCase.
    Open

        function apcal_todays_schedule_edit($options)
        {
            global $xoopsDB, $xoopsConfig;
    
            $moduleDirName = empty($options[0]) ? basename(dirname(__DIR__)) : $options[0];
    Severity: Minor
    Found in blocks/apcal_todays_schedule.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_todays_schedule_show_tpl($options)
        {
            global $xoopsConfig, $xoopsDB;
    
            $moduleDirName = empty($options[0]) ? basename(dirname(__DIR__)) : $options[0];
    Severity: Minor
    Found in blocks/apcal_todays_schedule.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_todays_schedule_show_tpl($options)
        {
            global $xoopsConfig, $xoopsDB;
    
            $moduleDirName = empty($options[0]) ? basename(dirname(__DIR__)) : $options[0];
    Severity: Minor
    Found in blocks/apcal_todays_schedule.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