YetiForceCompany/YetiForceCRM

View on GitHub
modules/Settings/MappedFields/models/ListView.php

Summary

Maintainability
A
2 hrs
Test Coverage
F
0%

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

    public function getListViewEntries($pagingModel)
    {
        $module = $this->getModule();
        $parentModuleName = $module->getParentName();
        if (!empty($parentModuleName)) {
Severity: Minor
Found in modules/Settings/MappedFields/models/ListView.php - About 1 hr to fix

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

        public function getListViewEntries($pagingModel)
        {
            $module = $this->getModule();
            $parentModuleName = $module->getParentName();
            if (!empty($parentModuleName)) {
    Severity: Minor
    Found in modules/Settings/MappedFields/models/ListView.php - About 25 mins to fix

    Cognitive Complexity

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

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

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

    Further reading

    Missing class import via use statement (line '32', column '17').
    Open

            $query = (new \App\Db\Query())->select($listFields)

    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 '73', column '17').
    Open

            $query = (new \App\Db\Query())->from($module->baseTable);

    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 '\App\Module' in method 'getListViewEntries'.
    Open

                $relModuleName = \App\Module::getModuleName($row['reltabid']);

    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 getListViewEntries uses an else expression. Else clauses are basically not necessary and you can simplify the code by not using them.
    Open

            } else {
                $pagingModel->set('nextPageExists', false);
            }

    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 '\App\Language' in method 'getListViewEntries'.
    Open

                $row['reltabid'] = \App\Language::translate($relModuleName, $relModuleName);

    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 '\App\Module' in method 'getListViewEntries'.
    Open

                $moduleName = \App\Module::getModuleName($row['tabid']);

    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 '\App\Db' in method 'getListViewCount'.
    Open

            $db = \App\Db::getInstance('admin');

    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 '\App\Language' in method 'getListViewEntries'.
    Open

                $row['tabid'] = \App\Language::translate($moduleName, $moduleName);

    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 'Vtiger_Loader' in method 'getListViewEntries'.
    Open

            $recordModelClass = Vtiger_Loader::getComponentClassName('Model', 'Record', $qualifiedModuleName);

    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

    Define a constant instead of duplicating this literal "tabid" 4 times.
    Open

                $query->where(['tabid' => $sourceModule]);

    Duplicated string literals make the process of refactoring error-prone, since you must be sure to update all occurrences.

    On the other hand, constants can be referenced from many places, but only need to be updated in a single place.

    Noncompliant Code Example

    With the default threshold of 3:

    function run() {
      prepare('action1');                              // Non-Compliant - 'action1' is duplicated 3 times
      execute('action1');
      release('action1');
    }
    

    Compliant Solution

    ACTION_1 = 'action1';
    
    function run() {
      prepare(ACTION_1);
      execute(ACTION_1);
      release(ACTION_1);
    }
    

    Exceptions

    To prevent generating some false-positives, literals having less than 5 characters are excluded.

    Call to undeclared method \App\Db\Query::from
    Open

            $query = (new \App\Db\Query())->from($module->baseTable);

    Call to undeclared method \App\Db\Query::select
    Open

            $query = (new \App\Db\Query())->select($listFields)

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

    class Settings_MappedFields_ListView_Model extends Settings_Vtiger_ListView_Model

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

            $db = \App\Db::getInstance('admin');

    ShortVariable

    Since: 0.2

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

    Example

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

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

    The class Settings_MappedFields_ListView_Model is not named in CamelCase.
    Open

    class Settings_MappedFields_ListView_Model extends Settings_Vtiger_ListView_Model
    {
        /**
         * Function to get the list view entries.
         *

    CamelCaseClassName

    Since: 0.2

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

    Example

    class class_name {
    }

    Source

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

            $parentModuleName = $module->getParentName();

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

         * @return array - Associative array of record id mapped to Vtiger_Record_Model instance

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

        public function getListViewEntries($pagingModel)

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

                $relModuleName = \App\Module::getModuleName($row['reltabid']);

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

                $listViewRecordModels[$recordModel->getId()] = $recordModel;

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

        }

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

            $pageLimit = $pagingModel->getPageLimit();

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

            }

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

            $listViewRecordModels = [];

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

            $pagingModel->calculatePageRange($dataReader->count());

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

         * Function to get the list view entries.

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

            } else {

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

            $dataReader->close();

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

                $query->where(['tabid' => $sourceModule]);

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

                $query->orderBy(sprintf('%s %s ', $orderBy, $this->getForSql('sortorder')));

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

            $module = $this->getModule();

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

        /**

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

        {

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

            $recordModelClass = Vtiger_Loader::getComponentClassName('Model', 'Record', $qualifiedModuleName);

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

                $query->where(['tabid' => $sourceModule]);

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

                $pagingModel->set('nextPageExists', true);

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

        }

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

            $sourceModule = $this->get('sourceModule');

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

                $moduleName = \App\Module::getModuleName($row['tabid']);

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

            if ($dataReader->count() > $pageLimit) {

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

                array_pop($listViewRecordModels);

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

            $query = (new \App\Db\Query())->from($module->baseTable);

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

            }

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

         * @param Vtiger_Paging_Model $pagingModel

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

            if (!empty($orderBy)) {

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

            $module = $this->getModule();

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

            $listFields = array_keys($module->listFields);

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

                $row['tabid'] = \App\Language::translate($moduleName, $moduleName);

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

            }

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

        {

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

            $sourceModule = $this->get('sourceModule');

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

                ->from($module->baseTable);

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

            if (!empty($sourceModule)) {

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

            }

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

            $startIndex = $pagingModel->getStartIndex();

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

            return $query->count('*', $db);

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

         *

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

         *

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

                $recordModel->setData($row);

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

        /** {@inheritdoc} */

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

         */

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

            if (!empty($parentModuleName)) {

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

            $dataReader = $query->createCommand()->query();

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

                $pagingModel->set('nextPageExists', false);

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

            $query = (new \App\Db\Query())->select($listFields)

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

            $orderBy = $this->getForSql('orderby');

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

                $recordModel = new $recordModelClass();

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

        public function getListViewCount()

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

                $qualifiedModuleName = $parentModuleName . ':' . $module->getName();

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

            while ($row = $dataReader->read()) {

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

            }

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

            $listFields[] = $module->baseIndex;

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

            $query->limit($pageLimit + 1)->offset($startIndex);

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

                $row['reltabid'] = \App\Language::translate($relModuleName, $relModuleName);

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

            }

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

            return $listViewRecordModels;

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

            $db = \App\Db::getInstance('admin');

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

            if ($sourceModule) {

    Class name "Settings_MappedFields_ListView_Model" is not in camel caps format
    Open

    class Settings_MappedFields_ListView_Model extends Settings_Vtiger_ListView_Model

    There are no issues that match your filters.

    Category
    Status