YetiForceCompany/YetiForceCRM

View on GitHub
modules/Settings/TreesManager/views/Edit.php

Summary

Maintainability
A
1 hr
Test Coverage
F
0%

Method process has 26 lines of code (exceeds 25 allowed). Consider refactoring.
Open

    public function process(App\Request $request)
    {
        $viewer = $this->getViewer($request);
        $moduleName = $request->getModule();
        $qualifiedModuleName = $request->getModule(false);
Severity: Minor
Found in modules/Settings/TreesManager/views/Edit.php - About 1 hr to fix

    Avoid using static access to class 'Settings_TreesManager_Record_Model' in method 'process'.
    Open

                $recordModel = Settings_TreesManager_Record_Model::getInstanceById($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

    Avoid using static access to class '\App\Json' in method 'process'.
    Open

            $viewer->assign('TREE', \App\Json::encode($tree));

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

            } else {
                $recordModel = Settings_TreesManager_Record_Model::getCleanInstance();
                $viewer->assign('MODE', '');
                $recordModel->set('lastId', 0);
            }

    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 'Settings_TreesManager_Record_Model' in method 'process'.
    Open

                $recordModel = Settings_TreesManager_Record_Model::getCleanInstance();

    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

    Call to undeclared method \Vtiger_Viewer::assign
    Open

                $viewer->assign('MODE', '');

    Call to undeclared method \Vtiger_Viewer::assign
    Open

            $viewer->assign('RECORD_ID', $record);

    Call to undeclared method \Vtiger_Viewer::assign
    Open

            $viewer->assign('MODULE', $moduleName);

    Call to undeclared method \Vtiger_Viewer::assign
    Open

            $viewer->assign('TREE', \App\Json::encode($tree));

    Call to undeclared method \Vtiger_Viewer::assign
    Open

            $viewer->assign('ACCESS', $access);

    Call to undeclared method \Vtiger_Viewer::assign
    Open

                $viewer->assign('MODE', 'edit');

    Call to undeclared method \Vtiger_Viewer::assign
    Open

            $viewer->assign('RECORD_MODEL', $recordModel);

    Call to undeclared method \Vtiger_Viewer::assign
    Open

            $viewer->assign('QUALIFIED_MODULE', $qualifiedModuleName);

    Call to undeclared method \Vtiger_Viewer::assign
    Open

            $viewer->assign('LAST_ID', $recordModel->get('lastId'));

    Call to undeclared method \Vtiger_Viewer::assign
    Open

            $viewer->assign('SOURCE_MODULE', $sourceModuleId);

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

    class Settings_TreesManager_Edit_View extends Settings_Vtiger_Index_View

    The class Settings_TreesManager_Edit_View is not named in CamelCase.
    Open

    class Settings_TreesManager_Edit_View extends Settings_Vtiger_Index_View
    {
        /** {@inheritdoc} */
        public function process(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

        /** {@inheritdoc} */

    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

        public function process(App\Request $request)

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

            $access = 1;

    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('TREE', \App\Json::encode($tree));

    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

                $sourceModuleId = $recordModel->get('tabid');

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

                $viewer->assign('MODE', 'edit');

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

                $recordModel = Settings_TreesManager_Record_Model::getCleanInstance();

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

        {

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

                '~libraries/jstree/dist/jstree.js',

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

                "modules.Settings.{$request->getModule()}.resources.Edit",

    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('SOURCE_MODULE', $sourceModuleId);

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

            $viewer->assign('MODULE', $moduleName);

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

            $viewer->assign('ACCESS', $access);

    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

            $viewer->view('EditView.tpl', $qualifiedModuleName);

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

            return array_merge(parent::getFooterScripts($request), $this->checkAndConvertJsScripts([

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

                $recordModel->set('lastId', 0);

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

        public function getHeaderCss(App\Request $request)

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

                $recordModel = Settings_TreesManager_Record_Model::getInstanceById($record);

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

            } else {

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

            $viewer->assign('RECORD_ID', $record);

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

                $access = $recordModel->get('access');

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

            $tree = $recordModel->getTree();

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

            $qualifiedModuleName = $request->getModule(false);

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

            $record = $request->getInteger('record');

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

            $sourceModuleId = '';

    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

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

            if (!empty($record)) {

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

            $viewer->assign('RECORD_MODEL', $recordModel);

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

            $viewer->assign('QUALIFIED_MODULE', $qualifiedModuleName);

    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::getHeaderCss($request));

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

            $viewer->assign('LAST_ID', $recordModel->get('lastId'));

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

            return array_merge($this->checkAndConvertCssStyles([

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

                '~libraries/jstree-bootstrap-theme/dist/themes/proton/style.css',

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

        }

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

    class Settings_TreesManager_Edit_View extends Settings_Vtiger_Index_View

    There are no issues that match your filters.

    Category
    Status