YetiForceCompany/YetiForceCRM

View on GitHub
modules/Vtiger/dashboards/AssignedOverdueProjectsTasks.php

Summary

Maintainability
A
1 hr
Test Coverage
F
0%

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

    public function process(App\Request $request)
    {
        $currentUser = Users_Record_Model::getCurrentUserModel();
        $viewer = $this->getViewer($request);
        $moduleName = $request->getModule();
Severity: Minor
Found in modules/Vtiger/dashboards/AssignedOverdueProjectsTasks.php - About 1 hr to fix

    Missing class import via use statement (line '30', column '22').
    Open

            $pagingModel = new Vtiger_Paging_Model();

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

                $owner = Settings_WidgetsManagement_Module_Model::getDefaultUserId($widget);

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

            $widget = Vtiger_Widget_Model::getInstance($linkId, $currentUser->getId());

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

            $moduleModel = Vtiger_Module_Model::getInstance($moduleName);

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

            $href_max_length = \App\Config::main('href_max_length');

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

            $title_max_length = \App\Config::main('title_max_length');

    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 {
                $owner = $request->getByType('owner', 2);
            }

    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

    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 {
                $viewer->view('dashboards/AssignedProjectsTasks.tpl', $moduleName);
            }

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

            $currentUser = Users_Record_Model::getCurrentUserModel();

    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('MODULE_NAME', $moduleName);

    Call to undeclared method \Vtiger_Viewer::assign
    Open

            $viewer->assign('USER_CONDITIONS', ['condition' => ['<', 'targetenddate', $currentDate]]);

    Call to undeclared method \Vtiger_Viewer::assign
    Open

            $viewer->assign('PROJECTSTASKS', $projectsTasks);

    Call to undeclared method \Vtiger_Viewer::assign
    Open

            $viewer->assign('HREFNAMELENGTH', $href_max_length);

    Call to undeclared method \Vtiger_Viewer::assign
    Open

            $viewer->assign('CURRENTUSER', $currentUser);

    Call to undeclared method \Vtiger_Viewer::assign
    Open

            $viewer->assign('NODATAMSGLABLE', 'LBL_NO_OVERDUE_ACTIVITIES');

    Call to undeclared method \Vtiger_Viewer::assign
    Open

            $viewer->assign('OWNER', $owner);

    Call to undeclared method \Vtiger_Viewer::assign
    Open

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

    Call to undeclared method \Vtiger_Viewer::assign
    Open

            $viewer->assign('WIDGET', $widget);

    Call to undeclared method \Vtiger_Module_Model::getAssignedProjectsTasks
    Open

            $projectsTasks = (false === $owner) ? [] : $moduleModel->getAssignedProjectsTasks('overdue', $pagingModel, $owner);

    Call to undeclared method \Vtiger_Viewer::assign
    Open

            $viewer->assign('NAMELENGTH', $title_max_length);

    Call to undeclared method \Vtiger_Viewer::assign
    Open

            $viewer->assign('DATA', $data);

    Call to method getInstance from undeclared class \Vtiger_Widget_Model
    Open

            $widget = Vtiger_Widget_Model::getInstance($linkId, $currentUser->getId());

    Call to undeclared method \Vtiger_Viewer::assign
    Open

            $viewer->assign('PAGING_MODEL', $pagingModel);

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

    class Vtiger_AssignedOverdueProjectsTasks_Dashboard extends Vtiger_IndexAjax_View
    {
        public function process(App\Request $request)
        {
            $currentUser = Users_Record_Model::getCurrentUserModel();

    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 Vtiger_AssignedOverdueProjectsTasks_Dashboard extends Vtiger_IndexAjax_View

    The class Vtiger_AssignedOverdueProjectsTasks_Dashboard is not named in CamelCase.
    Open

    class Vtiger_AssignedOverdueProjectsTasks_Dashboard extends Vtiger_IndexAjax_View
    {
        public function process(App\Request $request)
        {
            $currentUser = Users_Record_Model::getCurrentUserModel();

    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

            $currentUser = Users_Record_Model::getCurrentUserModel();

    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

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

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

            $data = $request->getAll();

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

            $viewer->assign('PAGING_MODEL', $pagingModel);

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

            $viewer->assign('CURRENTUSER', $currentUser);

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

            $viewer->assign('NAMELENGTH', $title_max_length);

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

                $viewer->view('dashboards/AssignedProjectsTasksContents.tpl', $moduleName);

    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

        }

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

            }

    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

            $moduleModel = Vtiger_Module_Model::getInstance($moduleName);

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

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

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

            $viewer->assign('PROJECTSTASKS', $projectsTasks);

    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

            if (!$request->has('owner')) {

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

            $pagingModel = new Vtiger_Paging_Model();

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

            $currentDate = date('Y-m-d');

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

        {

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

                $owner = Settings_WidgetsManagement_Module_Model::getDefaultUserId($widget);

    Line exceeds 120 characters; contains 123 characters
    Open

            $projectsTasks = (false === $owner) ? [] : $moduleModel->getAssignedProjectsTasks('overdue', $pagingModel, $owner);

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

            $viewer->assign('OWNER', $owner);

    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

            $pagingModel->set('limit', (int) $widget->get('limit'));

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

            $widget = Vtiger_Widget_Model::getInstance($linkId, $currentUser->getId());

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

            $viewer->assign('DATA', $data);

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

            $pagingModel->set('page', $page);

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

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

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

            $viewer->assign('WIDGET', $widget);

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

            $viewer->assign('NODATAMSGLABLE', 'LBL_NO_OVERDUE_ACTIVITIES');

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

            $viewer->assign('USER_CONDITIONS', ['condition' => ['<', 'targetenddate', $currentDate]]);

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

            $linkId = $request->getInteger('linkid');

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

            $projectsTasks = (false === $owner) ? [] : $moduleModel->getAssignedProjectsTasks('overdue', $pagingModel, $owner);

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

            if ($request->has('content')) {

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

                $owner = $request->getByType('owner', 2);

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

            }

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

            $title_max_length = \App\Config::main('title_max_length');

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

            $href_max_length = \App\Config::main('href_max_length');

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

            $viewer->assign('HREFNAMELENGTH', $href_max_length);

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

                $viewer->view('dashboards/AssignedProjectsTasks.tpl', $moduleName);

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

    class Vtiger_AssignedOverdueProjectsTasks_Dashboard extends Vtiger_IndexAjax_View

    The variable $title_max_length is not named in camelCase.
    Open

        public function process(App\Request $request)
        {
            $currentUser = Users_Record_Model::getCurrentUserModel();
            $viewer = $this->getViewer($request);
            $moduleName = $request->getModule();

    CamelCaseVariableName

    Since: 0.2

    It is considered best practice to use the camelCase notation to name variables.

    Example

    class ClassName {
        public function doSomething() {
            $data_module = new DataModule();
        }
    }

    Source

    The variable $title_max_length is not named in camelCase.
    Open

        public function process(App\Request $request)
        {
            $currentUser = Users_Record_Model::getCurrentUserModel();
            $viewer = $this->getViewer($request);
            $moduleName = $request->getModule();

    CamelCaseVariableName

    Since: 0.2

    It is considered best practice to use the camelCase notation to name variables.

    Example

    class ClassName {
        public function doSomething() {
            $data_module = new DataModule();
        }
    }

    Source

    The variable $href_max_length is not named in camelCase.
    Open

        public function process(App\Request $request)
        {
            $currentUser = Users_Record_Model::getCurrentUserModel();
            $viewer = $this->getViewer($request);
            $moduleName = $request->getModule();

    CamelCaseVariableName

    Since: 0.2

    It is considered best practice to use the camelCase notation to name variables.

    Example

    class ClassName {
        public function doSomething() {
            $data_module = new DataModule();
        }
    }

    Source

    The variable $href_max_length is not named in camelCase.
    Open

        public function process(App\Request $request)
        {
            $currentUser = Users_Record_Model::getCurrentUserModel();
            $viewer = $this->getViewer($request);
            $moduleName = $request->getModule();

    CamelCaseVariableName

    Since: 0.2

    It is considered best practice to use the camelCase notation to name variables.

    Example

    class ClassName {
        public function doSomething() {
            $data_module = new DataModule();
        }
    }

    Source

    There are no issues that match your filters.

    Category
    Status