YetiForceCompany/YetiForceCRM

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

Summary

Maintainability
A
0 mins
Test Coverage
F
0%

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

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

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

        $this->recordAddsInstance = \App\RecordAddsTemplates::getInstance($request->getByType('recordAddsType', 'ClassName'));

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

        if (!\App\Config::main('isActiveRecordTemplate')) {

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

Reference to undeclared class \App\Controller\Modal
Open

        parent::preProcessAjax($request);

Reference to undeclared property \Vtiger_RecordAddsTemplates_View->modalIcon
Open

        $this->modalIcon = $this->recordAddsInstance->icon;

Reference to undeclared property \Vtiger_RecordAddsTemplates_View->pageTitle
Open

        $this->pageTitle = $this->recordAddsInstance->label;

Call to undeclared method \Vtiger_RecordAddsTemplates_View::getViewer
Open

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

Class extends undeclared class \App\Controller\Modal
Open

class Vtiger_RecordAddsTemplates_View extends \App\Controller\Modal

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

class Vtiger_RecordAddsTemplates_View extends \App\Controller\Modal

The class Vtiger_RecordAddsTemplates_View is not named in CamelCase.
Open

class Vtiger_RecordAddsTemplates_View extends \App\Controller\Modal
{
    /** {@inheritdoc} */
    public $showFooter = true;

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

    public $showFooter = true;

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

        $this->recordAddsInstance = \App\RecordAddsTemplates::getInstance($request->getByType('recordAddsType', 'ClassName'));

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

        $this->modalIcon = $this->recordAddsInstance->icon;

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

    public function process(App\Request $request): void

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

        $viewer->assign('RECORD_STRUCTURE', $this->recordAddsInstance->getFields());

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

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

        $this->pageTitle = $this->recordAddsInstance->label;

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

        $viewer->assign('MODULE_FORM', array_keys($this->recordAddsInstance->modulesFieldsMap));

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 (!\App\Config::main('isActiveRecordTemplate')) {

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 $modalSize = 'c-modal-xxl';

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

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

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

        $viewer->view('Modals/RecordAddsTemplates.tpl');

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

        $viewer->assign('VIEW', 'recordTemplate');

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} */

Line exceeds 120 characters; contains 126 characters
Open

        $this->recordAddsInstance = \App\RecordAddsTemplates::getInstance($request->getByType('recordAddsType', 'ClassName'));

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

        $this->recordAddsInstance->checkPermission();

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('MODE', '');

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

    private $recordAddsInstance;

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

    {

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

        $viewer->assign('RECORD_TEMPLATE', $this->recordAddsInstance->name);

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

        $viewer->assign('RECORD', null);

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

    /** @var object Record adds instance. */

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

        }

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

        $viewer->assign('BLOCK_LIST', $this->recordAddsInstance->getBlocks());

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

class Vtiger_RecordAddsTemplates_View extends \App\Controller\Modal

There are no issues that match your filters.

Category
Status