YetiForceCompany/YetiForceCRM

View on GitHub
modules/Settings/PickListDependency/views/IndexAjax.php

Summary

Maintainability
A
1 hr
Test Coverage
F
0%

Method getDependencyGraph has 27 lines of code (exceeds 25 allowed). Consider refactoring.
Open

    public function getDependencyGraph(App\Request $request)
    {
        $qualifiedName = $request->getModule(false);
        $recordModel = Settings_PickListDependency_Record_Model::getCleanInstance();
        foreach (['tabid', 'source_field'] as $fieldName) {
Severity: Minor
Found in modules/Settings/PickListDependency/views/IndexAjax.php - About 1 hr to fix

    Avoid using static access to class 'Settings_PickListDependency_Record_Model' in method 'getDependencyGraph'.
    Open

            $recordModel = Settings_PickListDependency_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

    Avoid assigning values to variables in if clauses and the like (line '48', column '7').
    Open

        public function getDependencyGraph(App\Request $request)
        {
            $qualifiedName = $request->getModule(false);
            $recordModel = Settings_PickListDependency_Record_Model::getCleanInstance();
            foreach (['tabid', 'source_field'] as $fieldName) {

    IfStatementAssignment

    Since: 2.7.0

    Assignments in if clauses and the like are considered a code smell. Assignments in PHP return the right operand as their result. In many cases, this is an expected behavior, but can lead to many difficult to spot bugs, especially when the right operand could result in zero, null or an empty string and the like.

    Example

    class Foo
    {
        public function bar($flag)
        {
            if ($foo = 'bar') { // possible typo
                // ...
            }
            if ($baz = 0) { // always false
                // ...
            }
        }
    }

    Source http://phpmd.org/rules/cleancode.html#ifstatementassignment

    Avoid using static access to class 'Settings_PickListDependency_Module_Model' in method 'getDependencyGraph'.
    Open

            $viewer->assign('RECORD_STRUCTURE', Settings_PickListDependency_Module_Model::getConditionBuilderStructure($sourceModuleModel, $selectedFieldName));

    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 'Settings_PickListDependency_Record_Model' in method 'dependentFields'.
    Open

            $recordModel = Settings_PickListDependency_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

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

            foreach (['tabid', 'source_field'] as $fieldName) {

    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_Viewer::assign
    Open

            $viewer->assign('RECORD_STRUCTURE_RELATED_MODULES', []);

    Call to undeclared method \Vtiger_Viewer::assign
    Open

            $viewer->assign('OPERATORS', ['e']);

    Call to undeclared method \Vtiger_Viewer::assign
    Open

            $viewer->assign('RECORD_STRUCTURE', Settings_PickListDependency_Module_Model::getConditionBuilderStructure($sourceModuleModel, $selectedFieldName));

    Call to undeclared method \Vtiger_Viewer::assign
    Open

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

    Call to undeclared method \Vtiger_Viewer::assign
    Open

            $viewer->assign('SOURCE_MODULE', $sourceModuleModel->getName());

    Call to undeclared method \Vtiger_Viewer::assign
    Open

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

    Call to undeclared method \Vtiger_Viewer::assign
    Open

            $viewer->assign('STRUCTURE', $recordModel->getModule()->getEditViewStructure($recordModel));

    Call to undeclared method \Vtiger_Viewer::assign
    Open

            $viewer->assign('MAPPED_VALUES', $valueMapping);

    Call to undeclared method \Vtiger_Viewer::assign
    Open

            $viewer->assign('SELECTED_MODULE', $sourceModuleModel->getName());

    Call to undeclared method \Vtiger_Viewer::assign
    Open

            $viewer->assign('SOURCE_PICKLIST_VALUES', $picklistValues);

    Call to undeclared method \Vtiger_Viewer::assign
    Open

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

    Avoid excessively long class names like Settings_PickListDependency_IndexAjax_View. Keep class name length under 40.
    Open

    class Settings_PickListDependency_IndexAjax_View extends Settings_PickListDependency_Edit_View
    {
        use App\Controller\ClearProcess;
        use \App\Controller\ExposeMethod;
    
    

    LongClassName

    Since: 2.9

    Detects when classes or interfaces are declared with excessively long names.

    Example

    class ATooLongClassNameThatHintsAtADesignProblem {
    
    }
    
    interface ATooLongInterfaceNameThatHintsAtADesignProblem {
    
    }

    Source https://phpmd.org/rules/naming.html#longclassname

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

    class Settings_PickListDependency_IndexAjax_View extends Settings_PickListDependency_Edit_View

    The class Settings_PickListDependency_IndexAjax_View is not named in CamelCase.
    Open

    class Settings_PickListDependency_IndexAjax_View extends Settings_PickListDependency_Edit_View
    {
        use App\Controller\ClearProcess;
        use \App\Controller\ExposeMethod;
    
    

    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 function __construct()

    Line exceeds 120 characters; contains 156 characters
    Open

            $viewer->assign('RECORD_STRUCTURE', Settings_PickListDependency_Module_Model::getConditionBuilderStructure($sourceModuleModel, $selectedFieldName));

    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

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

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

            $viewer->assign('SOURCE_MODULE', $sourceModuleModel->getName());

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

         * @param App\Request $request

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

            $viewer->assign('RECORD_STRUCTURE', Settings_PickListDependency_Module_Model::getConditionBuilderStructure($sourceModuleModel, $selectedFieldName));

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

        public function dependentFields(App\Request $request)

    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

         * Get dependency graph.

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

            }

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

            $picklistValues = $recordModel->getPickListValuesByField($sourceField->getName());

    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

            $viewer->assign('STRUCTURE', $recordModel->getModule()->getEditViewStructure($recordModel));

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

         *

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

            $sourceField = $recordModel->getFieldInstanceByName('source_field');

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

        }

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

            $selectedModule = $request->getByType('tabid', App\Purifier::ALNUM);

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

            $recordModel->set('tabid', $selectedModule);

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

        /**

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

         * @param App\Request $request

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

         * Get dependency fields.

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

            $sourceModuleModel = $recordModel->getSourceModule();

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

            $viewer->assign('MAPPED_VALUES', $valueMapping);

    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

            $recordModel = Settings_PickListDependency_Record_Model::getCleanInstance();

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

            $viewer->assign('SOURCE_PICKLIST_VALUES', $picklistValues);

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

            $viewer->view('ConditionList.tpl', $qualifiedName);

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

        use App\Controller\ClearProcess;

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

            if ($sourceValue = $recordModel->get($sourceField->getName())) {

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

         *

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

            $recordModel = Settings_PickListDependency_Record_Model::getCleanInstance();

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

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

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

            parent::__construct();

    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 getDependencyGraph(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

            $this->exposeMethod('getDependencyGraph');

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

                }

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

                $selectedFieldName = $sourceValue ? $sourceModuleModel->getFieldByName($sourceValue)->getName() : '';

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

            $viewer->assign('SELECTED_MODULE', $sourceModuleModel->getName());

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

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

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

        {

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

        use \App\Controller\ExposeMethod;

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

            $this->exposeMethod('dependentFields');

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

         *

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

            foreach (['tabid', 'source_field'] as $fieldName) {

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

                    $recordModel->set($fieldName, $request->getByType($fieldName, $recordModel->getFieldInstanceByName($fieldName)->get('purifyType')));

    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

            $valueMapping = $recordModel->getPickListDependency();

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

            $viewer->assign('RECORD_STRUCTURE_RELATED_MODULES', []);

    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->assign('RECORD_MODEL', $recordModel);

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

         *

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

        {

    Line exceeds 120 characters; contains 148 characters
    Open

                    $recordModel->set($fieldName, $request->getByType($fieldName, $recordModel->getFieldInstanceByName($fieldName)->get('purifyType')));

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

            $picklistValues = [];

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

            $selectedFieldName = '';

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

            $viewer->assign('OPERATORS', ['e']);

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

         * @return void

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

                if ($request->has($fieldName)) {

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

         * @return void

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

    class Settings_PickListDependency_IndexAjax_View extends Settings_PickListDependency_Edit_View

    There are no issues that match your filters.

    Category
    Status