YetiForceCompany/YetiForceCRM

View on GitHub
modules/Calendar/views/Detail.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)
Severity: Minor
Found in modules/Calendar/views/Detail.php by phpmd

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

Avoid using static access to class 'Vtiger_RecordStructure_Model' in method 'showModuleDetailView'.
Open

            $this->recordStructure = Vtiger_RecordStructure_Model::getInstanceFromRecordModel($recordModel, Vtiger_RecordStructure_Model::RECORD_STRUCTURE_MODE_DETAIL);
Severity: Minor
Found in modules/Calendar/views/Detail.php by phpmd

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 \Vtiger_Detail_View
Open

        parent::preProcess($request);
Severity: Critical
Found in modules/Calendar/views/Detail.php by phan

Call to undeclared method \Calendar_Detail_View::getViewer
Open

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

Reference to undeclared property \Calendar_Detail_View->recordStructure
Open

            $this->recordStructure = Vtiger_RecordStructure_Model::getInstanceFromRecordModel($recordModel, Vtiger_RecordStructure_Model::RECORD_STRUCTURE_MODE_DETAIL);
Severity: Minor
Found in modules/Calendar/views/Detail.php by phan

Reference to undeclared class \Vtiger_Detail_View
Open

        return parent::showModuleDetailView($request);
Severity: Critical
Found in modules/Calendar/views/Detail.php by phan

Call to undeclared method \Calendar_Detail_View::getViewer
Open

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

Reference to undeclared property \Calendar_Detail_View->recordStructure
Open

        if (!$this->recordStructure) {
Severity: Minor
Found in modules/Calendar/views/Detail.php by phan

Class extends undeclared class \Vtiger_Detail_View
Open

class Calendar_Detail_View extends Vtiger_Detail_View
Severity: Critical
Found in modules/Calendar/views/Detail.php by phan

Reference to undeclared property \Calendar_Detail_View->record
Open

        $recordModel = $this->record->getRecord();
Severity: Minor
Found in modules/Calendar/views/Detail.php by phan

Reference to undeclared property \Calendar_Detail_View->recordStructure
Open

        $viewer->assign('RECORD_STRUCTURE_MODEL', $this->recordStructure);
Severity: Minor
Found in modules/Calendar/views/Detail.php by phan

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

class Calendar_Detail_View extends Vtiger_Detail_View

The class Calendar_Detail_View is not named in CamelCase.
Open

class Calendar_Detail_View extends Vtiger_Detail_View
{
    /** {@inheritdoc} */
    public function preProcess(App\Request $request, $display = true)
    {
Severity: Minor
Found in modules/Calendar/views/Detail.php by phpmd

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

        $viewer->assign('INVITIES_SELECTED', $recordModel->getInvities());

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

        if (!$this->recordStructure) {

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

        $recordModel = $this->record->getRecord();

Line exceeds 120 characters; contains 168 characters
Open

            $this->recordStructure = Vtiger_RecordStructure_Model::getInstanceFromRecordModel($recordModel, Vtiger_RecordStructure_Model::RECORD_STRUCTURE_MODE_DETAIL);

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 preProcess(App\Request $request, $display = true)

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

            $this->recordStructure = Vtiger_RecordStructure_Model::getInstanceFromRecordModel($recordModel, Vtiger_RecordStructure_Model::RECORD_STRUCTURE_MODE_DETAIL);

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

        $viewer->assign('NO_SUMMARY', true);

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

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

    /** {@inheritdoc} */

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

        parent::preProcess($request);

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

        $viewer->assign('RECORD_STRUCTURE_MODEL', $this->recordStructure);

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

    {

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

    public function showModuleDetailView(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

    }

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

    }

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

class Calendar_Detail_View extends Vtiger_Detail_View

There are no issues that match your filters.

Category
Status