mambax7/songlist

View on GitHub
EXTRA/modules/tag/plugin/songlist.php

Summary

Maintainability
A
2 hrs
Test Coverage

Function songlist_tag_iteminfo has a Cognitive Complexity of 11 (exceeds 5 allowed). Consider refactoring.
Open

function songlist_tag_iteminfo(&$items)
{
    if (empty($items) || !is_array($items)) {
        return false;
    }
Severity: Minor
Found in EXTRA/modules/tag/plugin/songlist.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 songlist_tag_iteminfo has 27 lines of code (exceeds 25 allowed). Consider refactoring.
Open

function songlist_tag_iteminfo(&$items)
{
    if (empty($items) || !is_array($items)) {
        return false;
    }
Severity: Minor
Found in EXTRA/modules/tag/plugin/songlist.php - About 1 hr to fix

    Missing class import via use statement (line '25', column '48').
    Open

        $items_obj = $item_handler->getObjects(new Criteria('sid', '(' . implode(', ', $items_id) . ')', 'IN'), true);
    Severity: Minor
    Found in EXTRA/modules/tag/plugin/songlist.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 'songlist_tag_iteminfo'.
    Open

        $myts = MyTextSanitizer::getInstance();
    Severity: Minor
    Found in EXTRA/modules/tag/plugin/songlist.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 '77', column '10').
    Open

    function songlist_tag_synchronization($mid)
    {
        $item_handler =& xoops_getModuleHandler('songs', 'songlist');
        $link_handler =& xoops_getModuleHandler('link', 'tag');
            
    Severity: Minor
    Found in EXTRA/modules/tag/plugin/songlist.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 songlist_tag_synchronization uses an else expression. Else clauses are basically not necessary and you can simplify the code by not using them.
    Open

        else:
        $sql =  "    DELETE {$link_handler->table} FROM {$link_handler->table}" .
                "    LEFT JOIN {$item_handler->table} AS aa ON {$link_handler->table}.tag_itemid = aa.{$item_handler->keyName} " .
                '    WHERE ' .
                "        tag_modid = {$mid}" .
    Severity: Minor
    Found in EXTRA/modules/tag/plugin/songlist.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 unused local variables such as '$result'.
    Open

        if (!$result = $link_handler->db->queryF($sql)) {
    Severity: Minor
    Found in EXTRA/modules/tag/plugin/songlist.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

    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 9 and the first side effect is on line 2.
    Open

    <?php

    Inline control structures are not allowed
    Open

                if (is_object($item_obj))

    Line exceeds 120 characters; contains 126 characters
    Open

                "    LEFT JOIN {$item_handler->table} AS aa ON {$link_handler->table}.tag_itemid = aa.{$item_handler->keyName} " .

    Spaces must be used to indent lines; tabs are not allowed
    Open

                $items[$cat_id][$item_id] = [

    Line exceeds 120 characters; contains 126 characters
    Open

                    'link'    => 'index.php?op=item&fct=item&id=' . $item_obj->getVar('sid') . '&cid=' . $item_obj->getVar('cid'),

    Expected 1 space after closing parenthesis; found 0
    Open

        if (version_compare(mysql_get_server_info(), '4.1.0', 'ge')):

    Line indented incorrectly; expected at least 8 spaces, found 4
    Open

        $sql =  "    DELETE FROM {$link_handler->table}" .

    Closing brace must be on a line by itself
    Open

    if (!defined('XOOPS_ROOT_PATH')) { exit(); }

    A closing tag is not permitted at the end of a PHP file
    Open

    ?>

    Newline required after opening brace
    Open

    if (!defined('XOOPS_ROOT_PATH')) { exit(); }

    Expected 1 space after ELSE keyword; 0 found
    Open

        else:

    Line indented incorrectly; expected at least 8 spaces, found 4
    Open

        $sql =  "    DELETE {$link_handler->table} FROM {$link_handler->table}" .

    Whitespace found at end of line
    Open

        unset($items_obj);    

    Whitespace found at end of line
    Open

     * 

    The variable $cat_id is not named in camelCase.
    Open

    function songlist_tag_iteminfo(&$items)
    {
        if (empty($items) || !is_array($items)) {
            return false;
        }
    Severity: Minor
    Found in EXTRA/modules/tag/plugin/songlist.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 $item_obj is not named in camelCase.
    Open

    function songlist_tag_iteminfo(&$items)
    {
        if (empty($items) || !is_array($items)) {
            return false;
        }
    Severity: Minor
    Found in EXTRA/modules/tag/plugin/songlist.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_id is not named in camelCase.
    Open

    function songlist_tag_iteminfo(&$items)
    {
        if (empty($items) || !is_array($items)) {
            return false;
        }
    Severity: Minor
    Found in EXTRA/modules/tag/plugin/songlist.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_id is not named in camelCase.
    Open

    function songlist_tag_iteminfo(&$items)
    {
        if (empty($items) || !is_array($items)) {
            return false;
        }
    Severity: Minor
    Found in EXTRA/modules/tag/plugin/songlist.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 $item_obj is not named in camelCase.
    Open

    function songlist_tag_iteminfo(&$items)
    {
        if (empty($items) || !is_array($items)) {
            return false;
        }
    Severity: Minor
    Found in EXTRA/modules/tag/plugin/songlist.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 $item_handler is not named in camelCase.
    Open

    function songlist_tag_synchronization($mid)
    {
        $item_handler =& xoops_getModuleHandler('songs', 'songlist');
        $link_handler =& xoops_getModuleHandler('link', 'tag');
            
    Severity: Minor
    Found in EXTRA/modules/tag/plugin/songlist.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 $link_handler is not named in camelCase.
    Open

    function songlist_tag_synchronization($mid)
    {
        $item_handler =& xoops_getModuleHandler('songs', 'songlist');
        $link_handler =& xoops_getModuleHandler('link', 'tag');
            
    Severity: Minor
    Found in EXTRA/modules/tag/plugin/songlist.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 $item_id is not named in camelCase.
    Open

    function songlist_tag_iteminfo(&$items)
    {
        if (empty($items) || !is_array($items)) {
            return false;
        }
    Severity: Minor
    Found in EXTRA/modules/tag/plugin/songlist.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_id is not named in camelCase.
    Open

    function songlist_tag_iteminfo(&$items)
    {
        if (empty($items) || !is_array($items)) {
            return false;
        }
    Severity: Minor
    Found in EXTRA/modules/tag/plugin/songlist.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 $item_handler is not named in camelCase.
    Open

    function songlist_tag_synchronization($mid)
    {
        $item_handler =& xoops_getModuleHandler('songs', 'songlist');
        $link_handler =& xoops_getModuleHandler('link', 'tag');
            
    Severity: Minor
    Found in EXTRA/modules/tag/plugin/songlist.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 $items_obj is not named in camelCase.
    Open

    function songlist_tag_iteminfo(&$items)
    {
        if (empty($items) || !is_array($items)) {
            return false;
        }
    Severity: Minor
    Found in EXTRA/modules/tag/plugin/songlist.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 $link_handler is not named in camelCase.
    Open

    function songlist_tag_synchronization($mid)
    {
        $item_handler =& xoops_getModuleHandler('songs', 'songlist');
        $link_handler =& xoops_getModuleHandler('link', 'tag');
            
    Severity: Minor
    Found in EXTRA/modules/tag/plugin/songlist.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 $link_handler is not named in camelCase.
    Open

    function songlist_tag_synchronization($mid)
    {
        $item_handler =& xoops_getModuleHandler('songs', 'songlist');
        $link_handler =& xoops_getModuleHandler('link', 'tag');
            
    Severity: Minor
    Found in EXTRA/modules/tag/plugin/songlist.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 $items_id is not named in camelCase.
    Open

    function songlist_tag_iteminfo(&$items)
    {
        if (empty($items) || !is_array($items)) {
            return false;
        }
    Severity: Minor
    Found in EXTRA/modules/tag/plugin/songlist.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 $items_id is not named in camelCase.
    Open

    function songlist_tag_iteminfo(&$items)
    {
        if (empty($items) || !is_array($items)) {
            return false;
        }
    Severity: Minor
    Found in EXTRA/modules/tag/plugin/songlist.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 $item_id is not named in camelCase.
    Open

    function songlist_tag_iteminfo(&$items)
    {
        if (empty($items) || !is_array($items)) {
            return false;
        }
    Severity: Minor
    Found in EXTRA/modules/tag/plugin/songlist.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 $item_obj is not named in camelCase.
    Open

    function songlist_tag_iteminfo(&$items)
    {
        if (empty($items) || !is_array($items)) {
            return false;
        }
    Severity: Minor
    Found in EXTRA/modules/tag/plugin/songlist.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 $link_handler is not named in camelCase.
    Open

    function songlist_tag_synchronization($mid)
    {
        $item_handler =& xoops_getModuleHandler('songs', 'songlist');
        $link_handler =& xoops_getModuleHandler('link', 'tag');
            
    Severity: Minor
    Found in EXTRA/modules/tag/plugin/songlist.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 $item_obj is not named in camelCase.
    Open

    function songlist_tag_iteminfo(&$items)
    {
        if (empty($items) || !is_array($items)) {
            return false;
        }
    Severity: Minor
    Found in EXTRA/modules/tag/plugin/songlist.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 $item_obj is not named in camelCase.
    Open

    function songlist_tag_iteminfo(&$items)
    {
        if (empty($items) || !is_array($items)) {
            return false;
        }
    Severity: Minor
    Found in EXTRA/modules/tag/plugin/songlist.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 $item_handler is not named in camelCase.
    Open

    function songlist_tag_synchronization($mid)
    {
        $item_handler =& xoops_getModuleHandler('songs', 'songlist');
        $link_handler =& xoops_getModuleHandler('link', 'tag');
            
    Severity: Minor
    Found in EXTRA/modules/tag/plugin/songlist.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 $link_handler is not named in camelCase.
    Open

    function songlist_tag_synchronization($mid)
    {
        $item_handler =& xoops_getModuleHandler('songs', 'songlist');
        $link_handler =& xoops_getModuleHandler('link', 'tag');
            
    Severity: Minor
    Found in EXTRA/modules/tag/plugin/songlist.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 $item_handler is not named in camelCase.
    Open

    function songlist_tag_iteminfo(&$items)
    {
        if (empty($items) || !is_array($items)) {
            return false;
        }
    Severity: Minor
    Found in EXTRA/modules/tag/plugin/songlist.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 $item_obj is not named in camelCase.
    Open

    function songlist_tag_iteminfo(&$items)
    {
        if (empty($items) || !is_array($items)) {
            return false;
        }
    Severity: Minor
    Found in EXTRA/modules/tag/plugin/songlist.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 $item_id is not named in camelCase.
    Open

    function songlist_tag_iteminfo(&$items)
    {
        if (empty($items) || !is_array($items)) {
            return false;
        }
    Severity: Minor
    Found in EXTRA/modules/tag/plugin/songlist.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 $items_id is not named in camelCase.
    Open

    function songlist_tag_iteminfo(&$items)
    {
        if (empty($items) || !is_array($items)) {
            return false;
        }
    Severity: Minor
    Found in EXTRA/modules/tag/plugin/songlist.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 $item_obj is not named in camelCase.
    Open

    function songlist_tag_iteminfo(&$items)
    {
        if (empty($items) || !is_array($items)) {
            return false;
        }
    Severity: Minor
    Found in EXTRA/modules/tag/plugin/songlist.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 $item_handler is not named in camelCase.
    Open

    function songlist_tag_synchronization($mid)
    {
        $item_handler =& xoops_getModuleHandler('songs', 'songlist');
        $link_handler =& xoops_getModuleHandler('link', 'tag');
            
    Severity: Minor
    Found in EXTRA/modules/tag/plugin/songlist.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 $item_id is not named in camelCase.
    Open

    function songlist_tag_iteminfo(&$items)
    {
        if (empty($items) || !is_array($items)) {
            return false;
        }
    Severity: Minor
    Found in EXTRA/modules/tag/plugin/songlist.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 $item_handler is not named in camelCase.
    Open

    function songlist_tag_iteminfo(&$items)
    {
        if (empty($items) || !is_array($items)) {
            return false;
        }
    Severity: Minor
    Found in EXTRA/modules/tag/plugin/songlist.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 $items_obj is not named in camelCase.
    Open

    function songlist_tag_iteminfo(&$items)
    {
        if (empty($items) || !is_array($items)) {
            return false;
        }
    Severity: Minor
    Found in EXTRA/modules/tag/plugin/songlist.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 $item_obj is not named in camelCase.
    Open

    function songlist_tag_iteminfo(&$items)
    {
        if (empty($items) || !is_array($items)) {
            return false;
        }
    Severity: Minor
    Found in EXTRA/modules/tag/plugin/songlist.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 $item_handler is not named in camelCase.
    Open

    function songlist_tag_synchronization($mid)
    {
        $item_handler =& xoops_getModuleHandler('songs', 'songlist');
        $link_handler =& xoops_getModuleHandler('link', 'tag');
            
    Severity: Minor
    Found in EXTRA/modules/tag/plugin/songlist.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 $link_handler is not named in camelCase.
    Open

    function songlist_tag_synchronization($mid)
    {
        $item_handler =& xoops_getModuleHandler('songs', 'songlist');
        $link_handler =& xoops_getModuleHandler('link', 'tag');
            
    Severity: Minor
    Found in EXTRA/modules/tag/plugin/songlist.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 $item_handler is not named in camelCase.
    Open

    function songlist_tag_synchronization($mid)
    {
        $item_handler =& xoops_getModuleHandler('songs', 'songlist');
        $link_handler =& xoops_getModuleHandler('link', 'tag');
            
    Severity: Minor
    Found in EXTRA/modules/tag/plugin/songlist.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 $item_handler is not named in camelCase.
    Open

    function songlist_tag_synchronization($mid)
    {
        $item_handler =& xoops_getModuleHandler('songs', 'songlist');
        $link_handler =& xoops_getModuleHandler('link', 'tag');
            
    Severity: Minor
    Found in EXTRA/modules/tag/plugin/songlist.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 $item_id is not named in camelCase.
    Open

    function songlist_tag_iteminfo(&$items)
    {
        if (empty($items) || !is_array($items)) {
            return false;
        }
    Severity: Minor
    Found in EXTRA/modules/tag/plugin/songlist.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_id is not named in camelCase.
    Open

    function songlist_tag_iteminfo(&$items)
    {
        if (empty($items) || !is_array($items)) {
            return false;
        }
    Severity: Minor
    Found in EXTRA/modules/tag/plugin/songlist.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 $items_obj is not named in camelCase.
    Open

    function songlist_tag_iteminfo(&$items)
    {
        if (empty($items) || !is_array($items)) {
            return false;
        }
    Severity: Minor
    Found in EXTRA/modules/tag/plugin/songlist.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 $item_obj is not named in camelCase.
    Open

    function songlist_tag_iteminfo(&$items)
    {
        if (empty($items) || !is_array($items)) {
            return false;
        }
    Severity: Minor
    Found in EXTRA/modules/tag/plugin/songlist.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