YetiForceCompany/YetiForceCRM

View on GitHub
modules/Project/views/Detail.php

Summary

Maintainability
A
0 mins
Test Coverage
F
0%

Avoid using static access to class '\App\Language' in method 'showGantt'.
Open

        $viewer->assign('GANTT_TITLE', \App\Language::translate('LBL_GANTT_TITLE', 'Project'));
Severity: Minor
Found in modules/Project/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

Class extends undeclared class \Vtiger_Detail_View
Open

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

Reference to undeclared class \Vtiger_Detail_View
Open

        parent::__construct();
Severity: Critical
Found in modules/Project/views/Detail.php by phan

Call to undeclared method \Project_Detail_View::exposeMethod
Open

        $this->exposeMethod('showGantt');
Severity: Critical
Found in modules/Project/views/Detail.php by phan

Call to undeclared method \Project_Detail_View::getViewer
Open

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

Call to undeclared method \Project_Detail_View::exposeMethod
Open

        $this->exposeMethod('showRelatedRecords');
Severity: Critical
Found in modules/Project/views/Detail.php by phan

Reference to undeclared class \Vtiger_Detail_View
Open

        return array_merge(parent::getFooterScripts($request), $this->checkAndConvertJsScripts([
Severity: Critical
Found in modules/Project/views/Detail.php by phan

Call to undeclared method \Project_Detail_View::checkAndConvertJsScripts
Open

        return array_merge(parent::getFooterScripts($request), $this->checkAndConvertJsScripts([
Severity: Critical
Found in modules/Project/views/Detail.php by phan

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

class Project_Detail_View extends Vtiger_Detail_View

The class Project_Detail_View is not named in CamelCase.
Open

class Project_Detail_View extends Vtiger_Detail_View
{
    /** {@inheritdoc} */
    public function __construct()
    {
Severity: Minor
Found in modules/Project/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

    public function __construct()

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

    public function showGantt(App\Request $request)

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

        $viewer->assign('GANTT_TITLE', \App\Language::translate('LBL_GANTT_TITLE', 'Project'));

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

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

            '~libraries/chart.js/dist/Chart.js',

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

    {

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

    }

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 = $this->getViewer($request);

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

        $this->exposeMethod('showRelatedRecords');

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

     * @throws \App\Exceptions\AppException

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

    {

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

            'modules.Project.resources.Gantt',

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

        $this->exposeMethod('showGantt');

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

     * @throws \App\Exceptions\IllegalValue

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

            'modules.Project.resources.GanttController'

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

        $viewer->assign('PROJECTID', $request->getInteger('record'));

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

        parent::__construct();

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

     * Show gantt.

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/chartjs-plugin-datalabels/dist/chartjs-plugin-datalabels.js',

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('gantt/GanttContents.tpl', $moduleName);

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

            '~libraries/gantt-elastic/dist/bundle.js',

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

class Project_Detail_View extends Vtiger_Detail_View

There are no issues that match your filters.

Category
Status