YetiForceCompany/YetiForceCRM

View on GitHub
modules/Users/views/PreferenceDetail.php

Summary

Maintainability
A
0 mins
Test Coverage
F
0%

The method preProcess has a boolean flag argument $display, which is a certain sign of a Single Responsibility Principle violation.
Open

    public function preProcess(App\Request $request, $display = true)

BooleanArgumentFlag

Since: 1.4.0

A boolean flag argument is a reliable indicator for a violation of the Single Responsibility Principle (SRP). You can fix this problem by extracting the logic in the boolean flag into its own class or method.

Example

class Foo {
    public function bar($flag = true) {
    }
}

Source https://phpmd.org/rules/cleancode.html#booleanargumentflag

Missing class import via use statement (line '24', column '13').
Open

        throw new \App\Exceptions\NoPermittedToRecord('ERR_NO_PERMISSIONS_FOR_THE_RECORD', 406);

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 '19', column '14').
Open

            throw new \App\Exceptions\NoPermittedToRecord('ERR_NO_PERMISSIONS_FOR_THE_RECORD', 406);

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\Config' in method 'checkPermission'.
Open

        if (!App\Config::security('SHOW_MY_PREFERENCES')) {

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 'Users_Record_Model' in method 'checkPermission'.
Open

        $currentUserModel = Users_Record_Model::getCurrentUserModel();

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_DetailView_Model' in method 'preProcess'.
Open

        $this->record = Vtiger_DetailView_Model::getInstance($request->getModule(), $request->getInteger('record'));

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

        $moduleDetailFile = 'modules.' . $moduleName . '.resources.PreferenceDetail';

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.

Reference to undeclared property \Users_PreferenceDetail_View->record
Open

        $this->record = Vtiger_DetailView_Model::getInstance($request->getModule(), $request->getInteger('record'));

Call to undeclared method \Users_PreferenceDetail_View::getViewer
Open

        $viewer = $this->getViewer($request);
Severity: Critical
Found in modules/Users/views/PreferenceDetail.php by phan

Call to method getInstance from undeclared class \Vtiger_DetailView_Model
Open

        $this->record = Vtiger_DetailView_Model::getInstance($request->getModule(), $request->getInteger('record'));
Severity: Critical
Found in modules/Users/views/PreferenceDetail.php by phan

Static call to undeclared method \Users_Detail_View::preProcess
Open

        parent::preProcess($request, $display);
Severity: Critical
Found in modules/Users/views/PreferenceDetail.php by phan

Call to undeclared method \Users_PreferenceDetail_View::showModuleDetailView
Open

        return $this->showModuleDetailView($request);
Severity: Critical
Found in modules/Users/views/PreferenceDetail.php by phan

Static call to undeclared method \Users_Detail_View::getFooterScripts
Open

        $headerScriptInstances = parent::getFooterScripts($request);
Severity: Critical
Found in modules/Users/views/PreferenceDetail.php by phan

Call to undeclared method \Users_PreferenceDetail_View::checkAndConvertJsScripts
Open

        $jsScriptInstances = $this->checkAndConvertJsScripts($jsFileNames);
Severity: Critical
Found in modules/Users/views/PreferenceDetail.php by phan

Avoid excessively long variable names like $headerScriptInstances. Keep variable name length under 20.
Open

        $headerScriptInstances = parent::getFooterScripts($request);

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

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

class Users_PreferenceDetail_View extends Users_Detail_View

The class Users_PreferenceDetail_View is not named in CamelCase.
Open

class Users_PreferenceDetail_View extends Users_Detail_View
{
    /** {@inheritdoc} */
    public function checkPermission(App\Request $request)
    {

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

        parent::preProcess($request, $display);

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

            'modules.Vtiger.resources.Detail',

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

        return array_merge($headerScriptInstances, $jsScriptInstances);

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

    public function showModuleBasicView(App\Request $request)

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

    public function getFooterScripts(App\Request $request)

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

            'modules.' . $moduleName . '.resources.PreferenceDetail',

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

            'modules.' . $moduleName . '.resources.PreferenceEdit',

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

        $moduleName = $request->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

        return $this->showModuleDetailView($request);

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

        $jsFileNames = [

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

    /** {@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

        $this->record = Vtiger_DetailView_Model::getInstance($request->getModule(), $request->getInteger('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

        if (true === $currentUserModel->isAdminUser() || (int) $currentUserModel->get('id') === $request->getInteger('record')) {

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

            return 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

    public function preProcess(App\Request $request, $display = true)

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

        $viewer->view($this->preProcessTplName($request), $request->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

            'modules.Users.resources.Detail',

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

    public function checkPermission(App\Request $request)

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

    {

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

        $viewer = $this->getViewer($request);

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

        $moduleDetailFile = 'modules.' . $moduleName . '.resources.PreferenceDetail';

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

        if (!App\Config::security('SHOW_MY_PREFERENCES')) {

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

    protected function preProcessDisplay(App\Request $request)

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

        throw new \App\Exceptions\NoPermittedToRecord('ERR_NO_PERMISSIONS_FOR_THE_RECORD', 406);

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

    public function preProcessTplName(App\Request $request)

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

        ];

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

        $jsScriptInstances = $this->checkAndConvertJsScripts($jsFileNames);

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

    {

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

        $currentUserModel = Users_Record_Model::getCurrentUserModel();

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

            throw new \App\Exceptions\NoPermittedToRecord('ERR_NO_PERMISSIONS_FOR_THE_RECORD', 406);

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 'PreferenceDetailViewPreProcess.tpl';

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

    }

Line exceeds 120 characters; contains 129 characters
Open

        if (true === $currentUserModel->isAdminUser() || (int) $currentUserModel->get('id') === $request->getInteger('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

        $headerScriptInstances = parent::getFooterScripts($request);

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

        unset($headerScriptInstances[$moduleDetailFile]);

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

class Users_PreferenceDetail_View extends Users_Detail_View

There are no issues that match your filters.

Category
Status