YetiForceCompany/YetiForceCRM

View on GitHub
modules/Vtiger/views/RecordConverter.php

Summary

Maintainability
A
0 mins
Test Coverage
F
0%

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

            throw new \App\Exceptions\NoPermitted('LBL_PERMISSION_DENIED', 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 'Vtiger_Mass_Action' in method 'preProcessAjax'.
Open

        $records = Vtiger_Mass_Action::getRecordsListFromRequest($request);

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\RecordConverter' in method 'preProcessAjax'.
Open

            $converters = \App\RecordConverter::getModuleConverters($moduleName, $request->getByType('sourceView', \App\Purifier::STANDARD), $records);

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\RecordConverter' in method 'preProcessAjax'.
Open

            $this->converter = \App\RecordConverter::getInstanceById($convertId);

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\RecordConverter' in method 'preProcessAjax'.
Open

            $converters = \App\RecordConverter::getModuleConverters($moduleName, $request->getByType('sourceView', \App\Purifier::STANDARD));

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

        } else {
            $converters = \App\RecordConverter::getModuleConverters($moduleName, $request->getByType('sourceView', \App\Purifier::STANDARD));
        }

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

        if (!\App\Privilege::isPermitted($request->getModule(), 'RecordConventer')) {

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

        $convertId = $request->has('convertId') && isset($converters[$request->getInteger('convertId')]) ? $request->getInteger('convertId') : key($converters);

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.

Define a constant instead of duplicating this literal "sourceView" 3 times.
Open

        $fromView = $request->getByType('sourceView', \App\Purifier::STANDARD);

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 \Vtiger_RecordConverter_View::getViewer
Open

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

Class extends undeclared class \App\Controller\Modal
Open

class Vtiger_RecordConverter_View extends \App\Controller\Modal
Severity: Critical
Found in modules/Vtiger/views/RecordConverter.php by phan

Reference to undeclared class \App\Controller\Modal
Open

        parent::preProcessAjax($request);
Severity: Critical
Found in modules/Vtiger/views/RecordConverter.php by phan

Call to undeclared method \Vtiger_RecordConverter_View::getViewer
Open

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

Reference to undeclared property \Vtiger_RecordConverter_View->converter (Did you mean $converters)
Open

            $this->converter = \App\RecordConverter::getInstanceById($convertId);

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

class Vtiger_RecordConverter_View extends \App\Controller\Modal

The class Vtiger_RecordConverter_View is not named in CamelCase.
Open

class Vtiger_RecordConverter_View extends \App\Controller\Modal
{
    /** {@inheritdoc} */
    public $modalSize = 'modal-md';
    /** {@inheritdoc} */

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

    /** {@inheritdoc} */

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

    public $pageTitle = 'LBL_RECORD_CONVERTER';

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

    public $modalSize = 'modal-md';

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

    /** {@inheritdoc} */

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 $successBtn = 'LBL_SAVE';

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

            throw new \App\Exceptions\NoPermitted('LBL_PERMISSION_DENIED', 406);

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

    public function preProcessAjax(App\Request $request)

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

        if (!\App\Privilege::isPermitted($request->getModule(), 'RecordConventer')) {

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

    public $modalIcon = 'fas fa-exchange-alt';

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

    /** {@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 (!$converters) {

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

            $this->successBtn = '';

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

        parent::preProcessAjax($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

            $converters = \App\RecordConverter::getModuleConverters($moduleName, $request->getByType('sourceView', \App\Purifier::STANDARD));

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

        $fromView = $request->getByType('sourceView', \App\Purifier::STANDARD);

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

        } else {

Line exceeds 120 characters; contains 141 characters
Open

            $converters = \App\RecordConverter::getModuleConverters($moduleName, $request->getByType('sourceView', \App\Purifier::STANDARD));

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

        $convertId = $request->has('convertId') && isset($converters[$request->getInteger('convertId')]) ? $request->getInteger('convertId') : key($converters);

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

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

        $viewer->view('Modals/RecordConverter.tpl', $request->getModule());

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

            $converters = \App\RecordConverter::getModuleConverters($moduleName, $request->getByType('sourceView', \App\Purifier::STANDARD), $records);

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->assign('SELECTED_CONVERT_TYPE', $convertId);

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 process(App\Request $request)

Line exceeds 120 characters; contains 151 characters
Open

            $converters = \App\RecordConverter::getModuleConverters($moduleName, $request->getByType('sourceView', \App\Purifier::STANDARD), $records);

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

            $this->converter = \App\RecordConverter::getInstanceById($convertId);

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

        $records = Vtiger_Mass_Action::getRecordsListFromRequest($request);

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

        $moduleName = $request->getModule();

Line exceeds 120 characters; contains 160 characters
Open

        $convertId = $request->has('convertId') && isset($converters[$request->getInteger('convertId')]) ? $request->getInteger('convertId') : key($converters);

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

        $viewer->assign('SOURCE_VIEW', $fromView);

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

        if ('Detail' === $fromView) {

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->assign('CONVERTERS', $converters);

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

    }

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

class Vtiger_RecordConverter_View extends \App\Controller\Modal

There are no issues that match your filters.

Category
Status