YetiForceCompany/YetiForceCRM

View on GitHub
modules/Competition/models/DetailView.php

Summary

Maintainability
A
0 mins
Test Coverage
F
0%

Avoid using static access to class 'Users_Privileges_Model' in method 'getDetailViewRelatedLinks'.
Open

        $userPrivilegesModel = Users_Privileges_Model::getCurrentUserPrivilegesModel();

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

Argument 1 (mixed) is 'OpenStreetMap' but \Users_Privileges_Model::hasModulePermission() takes int defined at /code/modules/Users/models/Privileges.php:101
Open

        if ($userPrivilegesModel->hasModulePermission('OpenStreetMap')) {

Class extends undeclared class \Vtiger_DetailView_Model
Open

class Competition_DetailView_Model extends Vtiger_DetailView_Model
Severity: Critical
Found in modules/Competition/models/DetailView.php by phan

Call to undeclared method \Competition_DetailView_Model::getRecord
Open

                'linkurl' => $this->getRecord()->getDetailViewUrl() . '&mode=showOpenStreetMap',
Severity: Critical
Found in modules/Competition/models/DetailView.php by phan

Reference to undeclared class \Vtiger_DetailView_Model
Open

        $relatedLinks = parent::getDetailViewRelatedLinks();
Severity: Critical
Found in modules/Competition/models/DetailView.php by phan

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

class Competition_DetailView_Model extends Vtiger_DetailView_Model

The class Competition_DetailView_Model is not named in CamelCase.
Open

class Competition_DetailView_Model extends Vtiger_DetailView_Model
{
    /** {@inheritdoc} */
    public function getDetailViewRelatedLinks()
    {

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

        if ($userPrivilegesModel->hasModulePermission('OpenStreetMap')) {

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

    public function getDetailViewRelatedLinks()

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

        $relatedLinks = parent::getDetailViewRelatedLinks();

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

                'linkurl' => $this->getRecord()->getDetailViewUrl() . '&mode=showOpenStreetMap',

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

                'linktype' => 'DETAILVIEWTAB',

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

                'linkicon' => '',

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

        $userPrivilegesModel = Users_Privileges_Model::getCurrentUserPrivilegesModel();

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

        return $relatedLinks;

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

    }

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

            $relatedLinks[] = [

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_MAP',

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

        }

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

class Competition_DetailView_Model extends Vtiger_DetailView_Model

There are no issues that match your filters.

Category
Status