YetiForceCompany/YetiForceCRM

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

Summary

Maintainability
A
3 hrs
Test Coverage
F
18%

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

    public function getListViewEntries($pagingModel)
    {
        $moduleModel = $this->getModule();
        $moduleName = $moduleModel->getName();
        $parentModuleName = $moduleModel->getParentName();
Severity: Minor
Found in modules/Settings/Vtiger/models/ListView.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 getListViewEntries has 43 lines of code (exceeds 25 allowed). Consider refactoring.
Open

    public function getListViewEntries($pagingModel)
    {
        $moduleModel = $this->getModule();
        $moduleName = $moduleModel->getName();
        $parentModuleName = $moduleModel->getParentName();
Severity: Minor
Found in modules/Settings/Vtiger/models/ListView.php - About 1 hr to fix

    The method getListViewEntries() has an NPath complexity of 384. The configured NPath complexity threshold is 200.
    Open

        public function getListViewEntries($pagingModel)
        {
            $moduleModel = $this->getModule();
            $moduleName = $moduleModel->getName();
            $parentModuleName = $moduleModel->getParentName();

    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 method getListViewEntries() has a Cyclomatic Complexity of 12. The configured cyclomatic complexity threshold is 10.
    Open

        public function getListViewEntries($pagingModel)
        {
            $moduleModel = $this->getModule();
            $moduleName = $moduleModel->getName();
            $parentModuleName = $moduleModel->getParentName();

    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

    Missing class import via use statement (line '62', column '15').
    Open

            return (new App\Db\Query())->from($module->getBaseTable());

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

            $modelClassName = Vtiger_Loader::getComponentClassName('Model', 'ListView', $name);

    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

    Avoid using static access to class 'App\Module' in method 'getListViewEntries'.
    Open

                    $orderBy = 'COALESCE(' . App\Module::getSqlForNameInDisplayFormat('Users') . ',vtiger_groups.groupname)';

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

                $fieldModel = Vtiger_Field_Model::getInstance('assigned_user_id', $moduleModel);

    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 {
                    $listQuery->orderBy([$orderBy => SORT_ASC]);
                }

    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 'Vtiger_Link_Model' in method 'getListViewLinks'.
    Open

                $links['LISTVIEWBASIC'][] = Vtiger_Link_Model::getInstanceFromValues($basicLink);

    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 'setModule'.
    Open

            $modelClassName = Vtiger_Loader::getComponentClassName('Model', 'Module', $name);

    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 "Model" 3 times.
    Open

            $modelClassName = Vtiger_Loader::getComponentClassName('Model', 'Module', $name);

    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.

    Argument 2 (module) is \App\Base|\Settings_Vtiger_Module_Model but \Vtiger_Field_Model::getInstance() takes \Vtiger_Module_Model|false defined at /code/modules/Vtiger/models/Field.php:1158
    Open

                $fieldModel = Vtiger_Field_Model::getInstance('assigned_user_id', $moduleModel);

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

                    $listQuery->orderBy([$orderBy => SORT_DESC]);

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

                $listQuery->limit($pageLimit)->offset($startIndex);

    Call to undeclared method \Settings_Vtiger_Module_Model::getCreateRecordUrl
    Open

                    'linkurl' => $moduleModel->getCreateRecordUrl(),

    Call to method read from undeclared class \yii\db\DataReader
    Open

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

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

            return (new App\Db\Query())->from($module->getBaseTable());

    Reference to undeclared property \Settings_Vtiger_ListView_Model->module
    Open

            $this->module = new $modelClassName();

    Reference to undeclared property \Settings_Vtiger_ListView_Model->module (Did you mean $module)
    Open

            $this->module = $module;

    Reference to undeclared property \Settings_Vtiger_ListView_Model->module
    Open

            return $this->module;

    Call to method close from undeclared class \yii\db\DataReader
    Open

            $dataReader->close();

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

                    $listQuery->orderBy([$orderBy => SORT_ASC]);

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

            return $this->loadListViewCondition()->count();

    Call to method count from undeclared class \yii\db\DataReader
    Open

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

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

    class Settings_Vtiger_ListView_Model extends \App\Base

    The class Settings_Vtiger_ListView_Model is not named in CamelCase.
    Open

    class Settings_Vtiger_ListView_Model extends \App\Base
    {
        /**
         * Function to get the Module Model.
         *

    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

         */

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

            $this->module = new $modelClassName();

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

        {

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

         * Function to get the list view header.

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

        /**

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

         * Function to get the Module Model.

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

            return $this->module;

    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

        }

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

         * @return Settings_Vtiger_Module_Model instance

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

            return $this;

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

        public function setModule($name)

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

        /**

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

            $this->module = $module;

    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

        public function setModuleFromInstance($module)

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

         *

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

        public function getListViewHeaders()

    Line exceeds 120 characters; contains 121 characters
    Open

                    $orderBy = 'COALESCE(' . App\Module::getSqlForNameInDisplayFormat('Users') . ',vtiger_groups.groupname)';

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

            return $links;

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

            $moduleModel = $this->getModule();

    Line exceeds 120 characters; contains 131 characters
    Open

         *                         underlying database engine and to support integer values higher than a 32bit PHP integer can handle.

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

         */

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

            $modelClassName = Vtiger_Loader::getComponentClassName('Model', 'Module', $name);

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

         * @return App\Db\Query

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

                $qualifiedModuleName = $parentModuleName . ':' . $qualifiedModuleName;

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

                    $listQuery->orderBy([$orderBy => SORT_DESC]);

    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

            $basicLinks = $this->getBasicLinks();

    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

                    'linklabel' => 'LBL_ADD_RECORD',

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

         * Function to get the instance of Settings module model.

    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 $this;

    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

         *

    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

                $record = new $recordModelClass();

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

            foreach ($basicLinks as $basicLink) {

    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

        /**

    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

                $record->setData($row);

    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

                    'linkurl' => $moduleModel->getCreateRecordUrl(),

    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 $this->loadListViewCondition()->count();

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

         * Load list view conditions.

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

         *

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

            $modelClassName = Vtiger_Loader::getComponentClassName('Model', 'ListView', $name);

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

        {

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

            $moduleModel = $this->getModule();

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

                $listQuery->limit($pageLimit)->offset($startIndex);

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

        /**

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

                $basicLinks[] = [

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

            }

    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

        /**

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

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

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

        public function getListViewLinks()

    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

        public function loadListViewCondition(): App\Db\Query

    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

         * Function creates preliminary database query.

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

            $qualifiedModuleName = $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

         * @return array of Basic links

    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

         * @return Settings_Vtiger_ListView_Model instance

    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

            $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

                ];

    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 string $name

    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

            }

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

                    $record->setModule($moduleModel);

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

            if ($moduleModel->isPagingSupported()) {

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

         */

    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

         * @return App\Db\Query

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

            return $instance->setModule($name);

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

        {

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

        public function getBasicListQuery(): App\Db\Query

    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

                if ('owner' == $fieldModel->getFieldDataType()) {

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

            if ($moduleModel->isPagingSupported()) {

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

            return (new App\Db\Query())->from($module->getBaseTable());

    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

         * Function to get the list view entries.

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

         * Function to get Basic links.

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

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

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

            $moduleName = $moduleModel->getName();

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

        {

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

            $listQuery = $this->loadListViewCondition();

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

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

    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

            $instance = new $modelClassName();

    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

            if (!empty($parentModuleName)) {

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

            if (!empty($orderBy) && 'smownerid' === $orderBy) {

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

                $fieldModel = Vtiger_Field_Model::getInstance('assigned_user_id', $moduleModel);

    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

            $basicLinks = [];

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

                    'linkicon' => 'fas fa-plus',

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

                    'showLabel' => 1,

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

         * @return int|string|null number of records. The result may be a string depending on the

    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

        {

    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

                    $orderBy = 'COALESCE(' . App\Module::getSqlForNameInDisplayFormat('Users') . ',vtiger_groups.groupname)';

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

                if ('DESC' === $this->getForSql('sortorder')) {

    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

            return $listViewRecordModels;

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

                $links['LISTVIEWBASIC'][] = Vtiger_Link_Model::getInstanceFromValues($basicLink);

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

        {

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

                    'linkclass' => 'btn-light addButton',

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

         *                         underlying database engine and to support integer values higher than a 32bit PHP integer can handle.

    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

                    $listQuery->orderBy([$orderBy => SORT_ASC]);

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

            $links = [];

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

            if ($moduleModel->hasCreatePermissions()) {

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

                    'linktype' => 'LISTVIEWBASIC',

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

         *

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

        public function getModule()

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

         * @return array - List of Vtiger_Field_Model instances

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

            $parentModuleName = $moduleModel->getParentName();

    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

        public function getBasicLinks()

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

            return $basicLinks;

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

            return $this->getBasicListQuery();

    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 $module->getListFields();

    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($orderBy)) {

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

                if (method_exists($record, 'getModule') && method_exists($record, 'setModule')) {

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

         * Function to get the list view entries count.

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

         */

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

        public static function getInstance($name = 'Settings:Vtiger')

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

    class Settings_Vtiger_ListView_Model extends \App\Base

    There are no issues that match your filters.

    Category
    Status