mambax7/adslight

View on GitHub
blocks/ads_2.php

Summary

Maintainability
C
7 hrs
Test Coverage

Method adslight_b2_show has 94 lines of code (exceeds 25 allowed). Consider refactoring.
Open

function adslight_b2_show($options)
{
    if (!class_exists(Helper::class)) {
        return [];
    }
Severity: Major
Found in blocks/ads_2.php - About 3 hrs to fix

    Function adslight_b2_show has a Cognitive Complexity of 25 (exceeds 5 allowed). Consider refactoring.
    Open

    function adslight_b2_show($options)
    {
        if (!class_exists(Helper::class)) {
            return [];
        }
    Severity: Minor
    Found in blocks/ads_2.php - About 3 hrs 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 function adslight_b2_show() has an NPath complexity of 1452. The configured NPath complexity threshold is 200.
    Open

    function adslight_b2_show($options)
    {
        if (!class_exists(Helper::class)) {
            return [];
        }
    Severity: Minor
    Found in blocks/ads_2.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 function adslight_b2_show() has 124 lines of code. Current threshold is set to 100. Avoid really long methods.
    Open

    function adslight_b2_show($options)
    {
        if (!class_exists(Helper::class)) {
            return [];
        }
    Severity: Minor
    Found in blocks/ads_2.php by phpmd

    The function adslight_b2_show() has a Cyclomatic Complexity of 14. The configured cyclomatic complexity threshold is 10.
    Open

    function adslight_b2_show($options)
    {
        if (!class_exists(Helper::class)) {
            return [];
        }
    Severity: Minor
    Found in blocks/ads_2.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 static access to class '\XoopsModules\Adslight\Helper' in method 'adslight_b2_show'.
    Open

        $helper = Helper::getInstance();
    Severity: Minor
    Found in blocks/ads_2.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 using static access to class '\XoopsModules\Adslight\Utility' in method 'adslight_b2_show'.
    Open

            $formattedCurrencyUtilityTemp = Utility::formatCurrencyTemp($price, $currencyCode, $currencySymbol, $currencyPosition);
    Severity: Minor
    Found in blocks/ads_2.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 using static access to class '\MyTextSanitizer' in method 'adslight_b2_show'.
    Open

        $myts           = \MyTextSanitizer::getInstance();
    Severity: Minor
    Found in blocks/ads_2.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 using static access to class '\XoopsModules\Adslight\Utility' in method 'adslight_b2_show'.
    Open

        $categories = Utility::getMyItemIds('adslight_view');
    Severity: Minor
    Found in blocks/ads_2.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 adslight_b2_show uses an else expression. Else clauses are basically not necessary and you can simplify the code by not using them.
    Open

            } else {
                $a_item['photo'] = '';
            }
    Severity: Minor
    Found in blocks/ads_2.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 '\XoopsModules\Adslight\Utility' in method 'adslight_b2_show'.
    Open

            $a_item['type']   = Utility::getNameType($type);
    Severity: Minor
    Found in blocks/ads_2.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 unused local variables such as '$hits'.
    Open

            $hits      = \htmlspecialchars($myrow['hits'], ENT_QUOTES | ENT_HTML5);
    Severity: Minor
    Found in blocks/ads_2.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 '$myts'.
    Open

        $myts           = \MyTextSanitizer::getInstance();
    Severity: Minor
    Found in blocks/ads_2.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 '$nom_type'.
    Open

            [$nom_type] = $xoopsDB->fetchRow($result7);
    Severity: Minor
    Found in blocks/ads_2.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 '$uid_owner'.
    Open

                while ([$cod_img, $pic_lid, $uid_owner, $url] = $xoopsDB->fetchRow($resultp)) {
    Severity: Minor
    Found in blocks/ads_2.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 '$updir'.
    Open

        $updir      = $helper->getConfig($moduleDirName . '_link_upload', '');
    Severity: Minor
    Found in blocks/ads_2.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 '$pic_lid'.
    Open

                while ([$cod_img, $pic_lid, $uid_owner, $url] = $xoopsDB->fetchRow($resultp)) {
    Severity: Minor
    Found in blocks/ads_2.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 '$cod_img'.
    Open

                while ([$cod_img, $pic_lid, $uid_owner, $url] = $xoopsDB->fetchRow($resultp)) {
    Severity: Minor
    Found in blocks/ads_2.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 $xoopsDB;
    Severity: Minor
    Found in blocks/ads_2.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 excessively long variable names like $formattedCurrencyUtilityTemp. Keep variable name length under 20.
    Open

            $formattedCurrencyUtilityTemp = Utility::formatCurrencyTemp($price, $currencyCode, $currencySymbol, $currencyPosition);
    Severity: Minor
    Found in blocks/ads_2.php by phpmd

    LongVariable

    Since: 0.2

    Detects when a field, formal or local variable is declared with a long name.

    Example

    class Something {
        protected $reallyLongIntName = -3; // VIOLATION - Field
        public static function main( array $interestingArgumentsList[] ) { // VIOLATION - Formal
            $otherReallyLongName = -5; // VIOLATION - Local
            for ($interestingIntIndex = 0; // VIOLATION - For
                 $interestingIntIndex < 10;
                 $interestingIntIndex++ ) {
            }
        }
    }

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

    There must be one USE keyword per declaration
    Open

    use XoopsModules\Adslight\{
    Severity: Minor
    Found in blocks/ads_2.php by phpcodesniffer

    Line exceeds 120 characters; contains 123 characters
    Open

                    $title = \htmlspecialchars(mb_substr($myrow['title'], 0, $options[2] - 1), ENT_QUOTES | ENT_HTML5) . '...';
    Severity: Minor
    Found in blocks/ads_2.php by phpcodesniffer

    Line exceeds 120 characters; contains 209 characters
    Open

                $sql = 'SELECT cod_img, lid, uid_owner, url FROM ' . $xoopsDB->prefix("{$moduleDirName}_pictures") . ' WHERE uid_owner=' . (int)$usid . " AND lid={$a_item['id']} ORDER BY date_created ASC LIMIT 1";
    Severity: Minor
    Found in blocks/ads_2.php by phpcodesniffer

    Line exceeds 120 characters; contains 187 characters
    Open

        $form .= '&nbsp;<br><br>' . constant("{$block_lang}_CHARS") . "&nbsp;<input type='text' name='options[]' value='{$options[2]}'>&nbsp;" . constant("{$block_lang}_LENGTH") . '<br><br>';
    Severity: Minor
    Found in blocks/ads_2.php by phpcodesniffer

    Line exceeds 120 characters; contains 260 characters
    Open

                    $a_item['photo'] = '<a href="' . XOOPS_URL . "/modules/{$moduleDirName}/viewads.php?lid={$a_item['id']}\"><img class=\"thumb\" src=\"" . XOOPS_URL . "/uploads/adslight/thumbs/thumb_{$url}\" align=\"left\" width=\"100px\" alt=\"{$title}\"></a>";
    Severity: Minor
    Found in blocks/ads_2.php by phpcodesniffer

    Line exceeds 120 characters; contains 276 characters
    Open

            $a_item['no_photo']     = '<a href="' . XOOPS_URL . "/modules/{$moduleDirName}/viewads.php?lid={$a_item['id']}\"><img class=\"thumb\" src=\"" . XOOPS_URL . "/modules/{$moduleDirName}/assets/images/nophoto.jpg\" align=\"left\" width=\"100px\" alt=\"{$ad_title}\"></a>";
    Severity: Minor
    Found in blocks/ads_2.php by phpcodesniffer

    Line exceeds 120 characters; contains 151 characters
    Open

        $block['link']           = '<a href="' . XOOPS_URL . "/modules/{$moduleDirName}/\"><b>" . constant($block_lang . '_ALL_LISTINGS') . '</b></a><br>';
    Severity: Minor
    Found in blocks/ads_2.php by phpcodesniffer

    Line exceeds 120 characters; contains 127 characters
    Open

            $formattedCurrencyUtilityTemp = Utility::formatCurrencyTemp($price, $currencyCode, $currencySymbol, $currencyPosition);
    Severity: Minor
    Found in blocks/ads_2.php by phpcodesniffer

    Line exceeds 120 characters; contains 145 characters
    Open

        $block['add']            = '<a href="' . XOOPS_URL . "/modules/{$moduleDirName}/\"><b>" . constant($block_lang . '_ADDNOW') . '</b></a><br>';
    Severity: Minor
    Found in blocks/ads_2.php by phpcodesniffer

    Line exceeds 120 characters; contains 167 characters
    Open

        $form .= '&nbsp;' . constant("{$block_lang}_DISP") . "&nbsp;<input type='text' name='options[]' value='{$options[1]}'>&nbsp;" . constant("{$block_lang}_LISTINGS");
    Severity: Minor
    Found in blocks/ads_2.php by phpcodesniffer

    Line exceeds 120 characters; contains 279 characters
    Open

        $sql    = 'SELECT lid, cid, title, status, type, price, typeprice, date_created, town, country, contactby, usid, premium, valid, photo, hits FROM ' . $xoopsDB->prefix("{$moduleDirName}_listing") . " WHERE valid='Yes' AND status!='1' {$cat_perms} ORDER BY {$options[0]} DESC";
    Severity: Minor
    Found in blocks/ads_2.php by phpcodesniffer

    Line exceeds 120 characters; contains 142 characters
    Open

            $a_item['link']         = '<a href="' . XOOPS_URL . "/modules/{$moduleDirName}/viewads.php?lid={$a_item['id']}\"><b>{$title}</b></a>";
    Severity: Minor
    Found in blocks/ads_2.php by phpcodesniffer

    The variable $a_item is not named in camelCase.
    Open

    function adslight_b2_show($options)
    {
        if (!class_exists(Helper::class)) {
            return [];
        }
    Severity: Minor
    Found in blocks/ads_2.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 $block_lang is not named in camelCase.
    Open

    function adslight_b2_show($options)
    {
        if (!class_exists(Helper::class)) {
            return [];
        }
    Severity: Minor
    Found in blocks/ads_2.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 $block_lang is not named in camelCase.
    Open

    function adslight_b2_edit($options): string
    {
        global $xoopsDB;
        $moduleDirName = \basename(\dirname(__DIR__));
        $block_lang    = '_MB_' . mb_strtoupper($moduleDirName);
    Severity: Minor
    Found in blocks/ads_2.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 $ad_title is not named in camelCase.
    Open

    function adslight_b2_show($options)
    {
        if (!class_exists(Helper::class)) {
            return [];
        }
    Severity: Minor
    Found in blocks/ads_2.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 $cod_img is not named in camelCase.
    Open

    function adslight_b2_show($options)
    {
        if (!class_exists(Helper::class)) {
            return [];
        }
    Severity: Minor
    Found in blocks/ads_2.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 $a_item is not named in camelCase.
    Open

    function adslight_b2_show($options)
    {
        if (!class_exists(Helper::class)) {
            return [];
        }
    Severity: Minor
    Found in blocks/ads_2.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 $block_lang is not named in camelCase.
    Open

    function adslight_b2_show($options)
    {
        if (!class_exists(Helper::class)) {
            return [];
        }
    Severity: Minor
    Found in blocks/ads_2.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 $block_lang is not named in camelCase.
    Open

    function adslight_b2_edit($options): string
    {
        global $xoopsDB;
        $moduleDirName = \basename(\dirname(__DIR__));
        $block_lang    = '_MB_' . mb_strtoupper($moduleDirName);
    Severity: Minor
    Found in blocks/ads_2.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 $a_item is not named in camelCase.
    Open

    function adslight_b2_show($options)
    {
        if (!class_exists(Helper::class)) {
            return [];
        }
    Severity: Minor
    Found in blocks/ads_2.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 $ad_title is not named in camelCase.
    Open

    function adslight_b2_show($options)
    {
        if (!class_exists(Helper::class)) {
            return [];
        }
    Severity: Minor
    Found in blocks/ads_2.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 $a_item is not named in camelCase.
    Open

    function adslight_b2_show($options)
    {
        if (!class_exists(Helper::class)) {
            return [];
        }
    Severity: Minor
    Found in blocks/ads_2.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 $block_lang is not named in camelCase.
    Open

    function adslight_b2_show($options)
    {
        if (!class_exists(Helper::class)) {
            return [];
        }
    Severity: Minor
    Found in blocks/ads_2.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 $a_item is not named in camelCase.
    Open

    function adslight_b2_show($options)
    {
        if (!class_exists(Helper::class)) {
            return [];
        }
    Severity: Minor
    Found in blocks/ads_2.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 $a_item is not named in camelCase.
    Open

    function adslight_b2_show($options)
    {
        if (!class_exists(Helper::class)) {
            return [];
        }
    Severity: Minor
    Found in blocks/ads_2.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 $a_item is not named in camelCase.
    Open

    function adslight_b2_show($options)
    {
        if (!class_exists(Helper::class)) {
            return [];
        }
    Severity: Minor
    Found in blocks/ads_2.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 $block_lang is not named in camelCase.
    Open

    function adslight_b2_show($options)
    {
        if (!class_exists(Helper::class)) {
            return [];
        }
    Severity: Minor
    Found in blocks/ads_2.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 $block_lang is not named in camelCase.
    Open

    function adslight_b2_show($options)
    {
        if (!class_exists(Helper::class)) {
            return [];
        }
    Severity: Minor
    Found in blocks/ads_2.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 $block_lang is not named in camelCase.
    Open

    function adslight_b2_edit($options): string
    {
        global $xoopsDB;
        $moduleDirName = \basename(\dirname(__DIR__));
        $block_lang    = '_MB_' . mb_strtoupper($moduleDirName);
    Severity: Minor
    Found in blocks/ads_2.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 $nom_price is not named in camelCase.
    Open

    function adslight_b2_show($options)
    {
        if (!class_exists(Helper::class)) {
            return [];
        }
    Severity: Minor
    Found in blocks/ads_2.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 $nom_price is not named in camelCase.
    Open

    function adslight_b2_show($options)
    {
        if (!class_exists(Helper::class)) {
            return [];
        }
    Severity: Minor
    Found in blocks/ads_2.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 $block_lang is not named in camelCase.
    Open

    function adslight_b2_edit($options): string
    {
        global $xoopsDB;
        $moduleDirName = \basename(\dirname(__DIR__));
        $block_lang    = '_MB_' . mb_strtoupper($moduleDirName);
    Severity: Minor
    Found in blocks/ads_2.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 $a_item is not named in camelCase.
    Open

    function adslight_b2_show($options)
    {
        if (!class_exists(Helper::class)) {
            return [];
        }
    Severity: Minor
    Found in blocks/ads_2.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 $a_item is not named in camelCase.
    Open

    function adslight_b2_show($options)
    {
        if (!class_exists(Helper::class)) {
            return [];
        }
    Severity: Minor
    Found in blocks/ads_2.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 $a_item is not named in camelCase.
    Open

    function adslight_b2_show($options)
    {
        if (!class_exists(Helper::class)) {
            return [];
        }
    Severity: Minor
    Found in blocks/ads_2.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 $a_item is not named in camelCase.
    Open

    function adslight_b2_show($options)
    {
        if (!class_exists(Helper::class)) {
            return [];
        }
    Severity: Minor
    Found in blocks/ads_2.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 $a_item is not named in camelCase.
    Open

    function adslight_b2_show($options)
    {
        if (!class_exists(Helper::class)) {
            return [];
        }
    Severity: Minor
    Found in blocks/ads_2.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 $a_item is not named in camelCase.
    Open

    function adslight_b2_show($options)
    {
        if (!class_exists(Helper::class)) {
            return [];
        }
    Severity: Minor
    Found in blocks/ads_2.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 $block_lang is not named in camelCase.
    Open

    function adslight_b2_show($options)
    {
        if (!class_exists(Helper::class)) {
            return [];
        }
    Severity: Minor
    Found in blocks/ads_2.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 $pic_lid is not named in camelCase.
    Open

    function adslight_b2_show($options)
    {
        if (!class_exists(Helper::class)) {
            return [];
        }
    Severity: Minor
    Found in blocks/ads_2.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 $block_lang is not named in camelCase.
    Open

    function adslight_b2_show($options)
    {
        if (!class_exists(Helper::class)) {
            return [];
        }
    Severity: Minor
    Found in blocks/ads_2.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 $block_lang is not named in camelCase.
    Open

    function adslight_b2_edit($options): string
    {
        global $xoopsDB;
        $moduleDirName = \basename(\dirname(__DIR__));
        $block_lang    = '_MB_' . mb_strtoupper($moduleDirName);
    Severity: Minor
    Found in blocks/ads_2.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_perms is not named in camelCase.
    Open

    function adslight_b2_show($options)
    {
        if (!class_exists(Helper::class)) {
            return [];
        }
    Severity: Minor
    Found in blocks/ads_2.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 $a_item is not named in camelCase.
    Open

    function adslight_b2_show($options)
    {
        if (!class_exists(Helper::class)) {
            return [];
        }
    Severity: Minor
    Found in blocks/ads_2.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_perms is not named in camelCase.
    Open

    function adslight_b2_show($options)
    {
        if (!class_exists(Helper::class)) {
            return [];
        }
    Severity: Minor
    Found in blocks/ads_2.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 $uid_owner is not named in camelCase.
    Open

    function adslight_b2_show($options)
    {
        if (!class_exists(Helper::class)) {
            return [];
        }
    Severity: Minor
    Found in blocks/ads_2.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 $nom_type is not named in camelCase.
    Open

    function adslight_b2_show($options)
    {
        if (!class_exists(Helper::class)) {
            return [];
        }
    Severity: Minor
    Found in blocks/ads_2.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 $block_lang is not named in camelCase.
    Open

    function adslight_b2_show($options)
    {
        if (!class_exists(Helper::class)) {
            return [];
        }
    Severity: Minor
    Found in blocks/ads_2.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 $block_lang is not named in camelCase.
    Open

    function adslight_b2_show($options)
    {
        if (!class_exists(Helper::class)) {
            return [];
        }
    Severity: Minor
    Found in blocks/ads_2.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 $block_lang is not named in camelCase.
    Open

    function adslight_b2_show($options)
    {
        if (!class_exists(Helper::class)) {
            return [];
        }
    Severity: Minor
    Found in blocks/ads_2.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 $nom_price is not named in camelCase.
    Open

    function adslight_b2_show($options)
    {
        if (!class_exists(Helper::class)) {
            return [];
        }
    Severity: Minor
    Found in blocks/ads_2.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 $block_lang is not named in camelCase.
    Open

    function adslight_b2_show($options)
    {
        if (!class_exists(Helper::class)) {
            return [];
        }
    Severity: Minor
    Found in blocks/ads_2.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 $block_lang is not named in camelCase.
    Open

    function adslight_b2_edit($options): string
    {
        global $xoopsDB;
        $moduleDirName = \basename(\dirname(__DIR__));
        $block_lang    = '_MB_' . mb_strtoupper($moduleDirName);
    Severity: Minor
    Found in blocks/ads_2.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 $a_item is not named in camelCase.
    Open

    function adslight_b2_show($options)
    {
        if (!class_exists(Helper::class)) {
            return [];
        }
    Severity: Minor
    Found in blocks/ads_2.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 $a_item is not named in camelCase.
    Open

    function adslight_b2_show($options)
    {
        if (!class_exists(Helper::class)) {
            return [];
        }
    Severity: Minor
    Found in blocks/ads_2.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 $a_item is not named in camelCase.
    Open

    function adslight_b2_show($options)
    {
        if (!class_exists(Helper::class)) {
            return [];
        }
    Severity: Minor
    Found in blocks/ads_2.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 $a_item is not named in camelCase.
    Open

    function adslight_b2_show($options)
    {
        if (!class_exists(Helper::class)) {
            return [];
        }
    Severity: Minor
    Found in blocks/ads_2.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_perms is not named in camelCase.
    Open

    function adslight_b2_show($options)
    {
        if (!class_exists(Helper::class)) {
            return [];
        }
    Severity: Minor
    Found in blocks/ads_2.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 $a_item is not named in camelCase.
    Open

    function adslight_b2_show($options)
    {
        if (!class_exists(Helper::class)) {
            return [];
        }
    Severity: Minor
    Found in blocks/ads_2.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 $a_item is not named in camelCase.
    Open

    function adslight_b2_show($options)
    {
        if (!class_exists(Helper::class)) {
            return [];
        }
    Severity: Minor
    Found in blocks/ads_2.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 $a_item is not named in camelCase.
    Open

    function adslight_b2_show($options)
    {
        if (!class_exists(Helper::class)) {
            return [];
        }
    Severity: Minor
    Found in blocks/ads_2.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 $a_item is not named in camelCase.
    Open

    function adslight_b2_show($options)
    {
        if (!class_exists(Helper::class)) {
            return [];
        }
    Severity: Minor
    Found in blocks/ads_2.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 $block_lang is not named in camelCase.
    Open

    function adslight_b2_edit($options): string
    {
        global $xoopsDB;
        $moduleDirName = \basename(\dirname(__DIR__));
        $block_lang    = '_MB_' . mb_strtoupper($moduleDirName);
    Severity: Minor
    Found in blocks/ads_2.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 $block_lang is not named in camelCase.
    Open

    function adslight_b2_edit($options): string
    {
        global $xoopsDB;
        $moduleDirName = \basename(\dirname(__DIR__));
        $block_lang    = '_MB_' . mb_strtoupper($moduleDirName);
    Severity: Minor
    Found in blocks/ads_2.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