YetiForceCompany/YetiForceCRM

View on GitHub
modules/Vtiger/views/Calendar.php

Summary

Maintainability
A
0 mins
Test Coverage
F
0%

Missing class import via use statement (line '26', column '14').
Open

            throw new \App\Exceptions\NoPermitted('LBL_PERMISSION_DENIED', 406);
Severity: Minor
Found in modules/Vtiger/views/Calendar.php by phpmd

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

The method postProcess has a boolean flag argument $display, which is a certain sign of a Single Responsibility Principle violation.
Open

    public function postProcess(App\Request $request, $display = true)
Severity: Minor
Found in modules/Vtiger/views/Calendar.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

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/Vtiger/views/Calendar.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 'CustomView_Record_Model' in method 'preProcess'.
Open

        $this->getViewer($request)->assign('CUSTOM_VIEWS', CustomView_Record_Model::getAllByGroup($request->getModule(), $mid));
Severity: Minor
Found in modules/Vtiger/views/Calendar.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

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

        $viewer->assign('ALL_DAY_SLOT', App\Config::module('Calendar', 'ALL_DAY_SLOT'));
Severity: Minor
Found in modules/Vtiger/views/Calendar.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

Avoid using static access to class 'Vtiger_CalendarRightPanel_Model' in method 'postProcess'.
Open

        $viewer->assign('FAVORITES_USERS', Vtiger_CalendarRightPanel_Model::getFavoriteUsers($request->getModule()));
Severity: Minor
Found in modules/Vtiger/views/Calendar.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

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

        $viewer->assign('DAY_VIEW', App\Config::module('Calendar', 'SHOW_TIMELINE_DAY') ? 'timeGridDay' : 'dayGridDay');
Severity: Minor
Found in modules/Vtiger/views/Calendar.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

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

        $viewer->assign('EVENT_EDIT', \App\Privilege::isPermitted($request->getModule(), 'EditView'));
Severity: Minor
Found in modules/Vtiger/views/Calendar.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

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

        $viewer->assign('WEEK_COUNT', App\Config::module('Calendar', 'WEEK_COUNT'));
Severity: Minor
Found in modules/Vtiger/views/Calendar.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

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

        $viewer->assign('EVENT_CREATE', \App\Privilege::isPermitted($request->getModule(), 'CreateView'));
Severity: Minor
Found in modules/Vtiger/views/Calendar.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

Avoid using static access to class 'Vtiger_Module_Model' in method 'checkPermission'.
Open

        if (!Users_Privileges_Model::getCurrentUserPrivilegesModel()->hasModulePermission($moduleName) || !\method_exists(Vtiger_Module_Model::getInstance($moduleName), 'getCalendarViewUrl')) {
Severity: Minor
Found in modules/Vtiger/views/Calendar.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

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

        $viewer->assign('WEEK_VIEW', App\Config::module('Calendar', 'SHOW_TIMELINE_WEEK') ? 'timeGridWeek' : 'dayGridWeek');
Severity: Minor
Found in modules/Vtiger/views/Calendar.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

Define a constant instead of duplicating this literal "Calendar" 4 times.
Open

        $viewer->assign('WEEK_COUNT', App\Config::module('Calendar', 'WEEK_COUNT'));
Severity: Critical
Found in modules/Vtiger/views/Calendar.php by sonar-php

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('LINKS', Vtiger_Calendar_Model::getInstance($moduleName)->getSideBarLinks([]));
Severity: Critical
Found in modules/Vtiger/views/Calendar.php by phan

Call to undeclared method \Vtiger_Viewer::assign
Open

            $viewer->assign('HIDDEN_DAYS', implode(',', $request->getExploded('hiddenDays', ',', 'Integer')));
Severity: Critical
Found in modules/Vtiger/views/Calendar.php by phan

Call to undeclared method \Vtiger_Viewer::assign
Open

            $viewer->assign('TIME', $request->getByType('time', 'Standard'));
Severity: Critical
Found in modules/Vtiger/views/Calendar.php by phan

Call to undeclared method \Vtiger_Viewer::assign
Open

        $viewer->assign('HISTORY_PARAMS', $historyParams ?? []);
Severity: Critical
Found in modules/Vtiger/views/Calendar.php by phan

Call to undeclared method \Vtiger_Viewer::assign
Open

        $this->getViewer($request)->assign('CUSTOM_VIEWS', CustomView_Record_Model::getAllByGroup($request->getModule(), $mid));
Severity: Critical
Found in modules/Vtiger/views/Calendar.php by phan

Call to undeclared method \Vtiger_Viewer::assign
Open

        $viewer->assign('FAVORITES_USERS', Vtiger_CalendarRightPanel_Model::getFavoriteUsers($request->getModule()));
Severity: Critical
Found in modules/Vtiger/views/Calendar.php by phan

Call to undeclared method \Vtiger_Viewer::assign
Open

        $viewer->assign('WEEK_VIEW', App\Config::module('Calendar', 'SHOW_TIMELINE_WEEK') ? 'timeGridWeek' : 'dayGridWeek');
Severity: Critical
Found in modules/Vtiger/views/Calendar.php by phan

Call to undeclared method \Vtiger_Viewer::assign
Open

        $viewer->assign('DAY_VIEW', App\Config::module('Calendar', 'SHOW_TIMELINE_DAY') ? 'timeGridDay' : 'dayGridDay');
Severity: Critical
Found in modules/Vtiger/views/Calendar.php by phan

Call to undeclared method \Vtiger_Viewer::assign
Open

        $viewer->assign('FILTERS', $this->filters);
Severity: Critical
Found in modules/Vtiger/views/Calendar.php by phan

Call to undeclared method \Vtiger_Viewer::assign
Open

        $viewer->assign('EVENT_EDIT', \App\Privilege::isPermitted($request->getModule(), 'EditView'));
Severity: Critical
Found in modules/Vtiger/views/Calendar.php by phan

Call to method getFavoriteUsers from undeclared class \Vtiger_CalendarRightPanel_Model
Open

        $viewer->assign('FAVORITES_USERS', Vtiger_CalendarRightPanel_Model::getFavoriteUsers($request->getModule()));
Severity: Critical
Found in modules/Vtiger/views/Calendar.php by phan

Call to undeclared method \Vtiger_Viewer::assign
Open

        $viewer->assign('EVENT_CREATE', \App\Privilege::isPermitted($request->getModule(), 'CreateView'));
Severity: Critical
Found in modules/Vtiger/views/Calendar.php by phan

Call to undeclared method \Vtiger_Viewer::assign
Open

        $viewer->assign('WEEK_COUNT', App\Config::module('Calendar', 'WEEK_COUNT'));
Severity: Critical
Found in modules/Vtiger/views/Calendar.php by phan

Call to undeclared method \Vtiger_Viewer::assign
Open

        $viewer->assign('ALL_DAY_SLOT', App\Config::module('Calendar', 'ALL_DAY_SLOT'));
Severity: Critical
Found in modules/Vtiger/views/Calendar.php by phan

Argument 1 (mixed) is string but \Users_Privileges_Model::hasModulePermission() takes int defined at /code/modules/Users/models/Privileges.php:101
Open

        if (!Users_Privileges_Model::getCurrentUserPrivilegesModel()->hasModulePermission($moduleName) || !\method_exists(Vtiger_Module_Model::getInstance($moduleName), 'getCalendarViewUrl')) {
Severity: Minor
Found in modules/Vtiger/views/Calendar.php by phan

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

class Vtiger_Calendar_View extends Vtiger_Index_View

The class Vtiger_Calendar_View is not named in CamelCase.
Open

class Vtiger_Calendar_View extends Vtiger_Index_View
{
    /** @var string[] Filters */
    protected $filters = ['Filter'];

Severity: Minor
Found in modules/Vtiger/views/Calendar.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 for alignment; tabs are not allowed
Open

    public function process(App\Request $request)

Spaces must be used for alignment; tabs are not allowed
Open

    /** {@inheritdoc} */

Spaces must be used for alignment; tabs are not allowed
Open

    public function getFooterScripts(App\Request $request)

Spaces must be used for alignment; tabs are not allowed
Open

    /** {@inheritdoc} */

Spaces must be used for alignment; tabs are not allowed
Open

    {

Spaces must be used for alignment; tabs are not allowed
Open

            $viewer->assign('TIME', $request->getByType('time', 'Standard'));

Spaces must be used for alignment; tabs are not allowed
Open

        }

Spaces must be used for alignment; tabs are not allowed
Open

        $viewer->assign('EVENT_EDIT', \App\Privilege::isPermitted($request->getModule(), 'EditView'));

Spaces must be used for alignment; tabs are not allowed
Open

    {

Spaces must be used for alignment; tabs are not allowed
Open

        $viewer = $this->getViewer($request);

Spaces must be used for alignment; tabs are not allowed
Open

        $viewer->view('Calendar/PostProcess.tpl', $request->getModule());

Spaces must be used for alignment; tabs are not allowed
Open

            '~libraries/css-element-queries/src/ResizeSensor.js',

Spaces must be used for alignment; tabs are not allowed
Open

    {

Spaces must be used for alignment; tabs are not allowed
Open

        if ($request->getBoolean('history')) {

Spaces must be used for alignment; tabs are not allowed
Open

            $viewer->assign('HIDDEN_DAYS', implode(',', $request->getExploded('hiddenDays', ',', 'Integer')));

Spaces must be used for alignment; tabs are not allowed
Open

    {

Spaces must be used for alignment; tabs are not allowed
Open

            throw new \App\Exceptions\NoPermitted('LBL_PERMISSION_DENIED', 406);

Spaces must be used for alignment; tabs are not allowed
Open

        parent::preProcess($request, $display);

Spaces must be used for alignment; tabs are not allowed
Open

        return array_merge(parent::getHeaderCss($request), $this->checkAndConvertCssStyles([

Spaces must be used for alignment; tabs are not allowed
Open

    public function postProcess(App\Request $request, $display = true)

Spaces must be used for alignment; tabs are not allowed
Open

            '~layouts/resources/Calendar.js',

Spaces must be used for alignment; tabs are not allowed
Open

        $moduleName = $request->getModule();

Spaces must be used for alignment; tabs are not allowed
Open

    }

Spaces must be used for alignment; tabs are not allowed
Open

        $viewer->assign('HISTORY_PARAMS', $historyParams ?? []);

Spaces must be used for alignment; tabs are not allowed
Open

    {

Spaces must be used for alignment; tabs are not allowed
Open

            '~libraries/fullcalendar/main.css',

Spaces must be used for alignment; tabs are not allowed
Open

    /** @var string[] Filters */

Spaces must be used for alignment; tabs are not allowed
Open

    protected $filters = ['Filter'];

Spaces must be used for alignment; tabs are not allowed
Open

        $viewer->assign('DAY_VIEW', App\Config::module('Calendar', 'SHOW_TIMELINE_DAY') ? 'timeGridDay' : 'dayGridDay');

Spaces must be used for alignment; tabs are not allowed
Open

        parent::postProcess($request);

Spaces must be used for alignment; tabs are not allowed
Open

            '~libraries/css-element-queries/src/ElementQueries.js',

Spaces must be used for alignment; tabs are not allowed
Open

            'modules.Vtiger.resources.CalendarView',

Spaces must be used for alignment; tabs are not allowed
Open

        ]));

Spaces must be used for alignment; tabs are not allowed
Open

    /** {@inheritdoc} */

Spaces must be used for alignment; tabs are not allowed
Open

        $viewer->assign('LINKS', Vtiger_Calendar_Model::getInstance($moduleName)->getSideBarLinks([]));

Spaces must be used for alignment; tabs are not allowed
Open

    {

Spaces must be used for alignment; tabs are not allowed
Open

        }

Spaces must be used for alignment; tabs are not allowed
Open

    }

Spaces must be used for alignment; tabs are not allowed
Open

        $this->getViewer($request)->assign('CUSTOM_VIEWS', CustomView_Record_Model::getAllByGroup($request->getModule(), $mid));

Spaces must be used for alignment; tabs are not allowed
Open

            $historyParams = array_diff_key($request->getAll(), array_flip(['history', 'module', 'view']));

Spaces must be used for alignment; tabs are not allowed
Open

        $viewer->assign('WEEK_VIEW', App\Config::module('Calendar', 'SHOW_TIMELINE_WEEK') ? 'timeGridWeek' : 'dayGridWeek');

Spaces must be used for alignment; tabs are not allowed
Open

    }

Spaces must be used for alignment; tabs are not allowed
Open

    /** {@inheritdoc} */

Spaces must be used for alignment; tabs are not allowed
Open

    public function getHeaderCss(App\Request $request)

Spaces must be used for alignment; tabs are not allowed
Open

        ]));

Spaces must be used for alignment; tabs are not allowed
Open

    public function checkPermission(App\Request $request)

Spaces must be used for alignment; tabs are not allowed
Open

        $viewer->assign('EVENT_CREATE', \App\Privilege::isPermitted($request->getModule(), 'CreateView'));

Spaces must be used for alignment; tabs are not allowed
Open

        $viewer->assign('WEEK_COUNT', App\Config::module('Calendar', 'WEEK_COUNT'));

Spaces must be used for alignment; tabs are not allowed
Open

            '~libraries/fullcalendar/main.js',

Spaces must be used for alignment; tabs are not allowed
Open

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

Spaces must be used for alignment; tabs are not allowed
Open

    }

Spaces must be used for alignment; tabs are not allowed
Open

    }

Spaces must be used for alignment; tabs are not allowed
Open

    {

Spaces must be used for alignment; tabs are not allowed
Open

        $viewer->assign('FAVORITES_USERS', Vtiger_CalendarRightPanel_Model::getFavoriteUsers($request->getModule()));

Spaces must be used for alignment; tabs are not allowed
Open

 * @author    Mariusz Krzaczkowski <m.krzaczkowski@yetiforce.com>

Spaces must be used for alignment; tabs are not allowed
Open

    /** {@inheritdoc} */

Spaces must be used for alignment; tabs are not allowed
Open

        $viewer->assign('ALL_DAY_SLOT', App\Config::module('Calendar', 'ALL_DAY_SLOT'));

Spaces must be used for alignment; tabs are not allowed
Open

        return 'Calendar/PreProcess.tpl';

Spaces must be used for alignment; tabs are not allowed
Open

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

Spaces must be used for alignment; tabs are not allowed
Open

        $mid = $request->has('mid') ? $request->getInteger('mid') : null;

Spaces must be used for alignment; tabs are not allowed
Open

    }

Spaces must be used for alignment; tabs are not allowed
Open

        $viewer->view('Calendar/CalendarView.tpl', $moduleName);

Spaces must be used for alignment; tabs are not allowed
Open

        $viewer->assign('FILTERS', $this->filters);

Spaces must be used for alignment; tabs are not allowed
Open

    }

Spaces must be used for alignment; tabs are not allowed
Open

    /** {@inheritdoc} */

Spaces must be used for alignment; tabs are not allowed
Open

    protected function preProcessTplName(App\Request $request)

Spaces must be used for alignment; tabs are not allowed
Open

    /** {@inheritdoc} */

Spaces must be used for alignment; tabs are not allowed
Open

        if (!Users_Privileges_Model::getCurrentUserPrivilegesModel()->hasModulePermission($moduleName) || !\method_exists(Vtiger_Module_Model::getInstance($moduleName), 'getCalendarViewUrl')) {

Spaces must be used for alignment; tabs are not allowed
Open

    public function preProcess(App\Request $request, $display = true)

Spaces must be used for alignment; tabs are not allowed
Open

        $viewer = $this->getViewer($request);

Spaces must be used for alignment; tabs are not allowed
Open

        $moduleName = $request->getModule();

Line exceeds 120 characters; contains 124 characters
Open

        $viewer->assign('WEEK_VIEW', App\Config::module('Calendar', 'SHOW_TIMELINE_WEEK') ? 'timeGridWeek' : 'dayGridWeek');

Line exceeds 120 characters; contains 128 characters
Open

        $this->getViewer($request)->assign('CUSTOM_VIEWS', CustomView_Record_Model::getAllByGroup($request->getModule(), $mid));

Line exceeds 120 characters; contains 193 characters
Open

        if (!Users_Privileges_Model::getCurrentUserPrivilegesModel()->hasModulePermission($moduleName) || !\method_exists(Vtiger_Module_Model::getInstance($moduleName), 'getCalendarViewUrl')) {

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

class Vtiger_Calendar_View extends Vtiger_Index_View

There are no issues that match your filters.

Category
Status