YetiForceCompany/YetiForceCRM

View on GitHub
modules/Leads/dashboards/LeadsByStatusConverted.php

Summary

Maintainability
F
3 days
Test Coverage
F
0%

Method getLeadsByStatusConverted has 44 lines of code (exceeds 25 allowed). Consider refactoring.
Open

    public function getLeadsByStatusConverted($owner, $dateFilter)
    {
        $query = new \App\Db\Query();
        $query->select([
            'leadstatusid' => 'vtiger_leadstatus.leadstatusid',
Severity: Minor
Found in modules/Leads/dashboards/LeadsByStatusConverted.php - About 1 hr to fix

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

        public function process(App\Request $request)
        {
            $currentUserId = \App\User::getCurrentUserId();
            $viewer = $this->getViewer($request);
            $moduleName = $request->getModule();
    Severity: Minor
    Found in modules/Leads/dashboards/LeadsByStatusConverted.php - About 1 hr to fix

      Function process has a Cognitive Complexity of 7 (exceeds 5 allowed). Consider refactoring.
      Open

          public function process(App\Request $request)
          {
              $currentUserId = \App\User::getCurrentUserId();
              $viewer = $this->getViewer($request);
              $moduleName = $request->getModule();
      Severity: Minor
      Found in modules/Leads/dashboards/LeadsByStatusConverted.php - About 35 mins to fix

      Cognitive Complexity

      Cognitive Complexity is a measure of how difficult a unit of code is to intuitively understand. Unlike Cyclomatic Complexity, which determines how difficult your code will be to test, Cognitive Complexity tells you how difficult your code will be to read and comprehend.

      A method's cognitive complexity is based on a few simple rules:

      • Code is not considered more complex when it uses shorthand that the language provides for collapsing multiple statements into one
      • Code is considered more complex for each "break in the linear flow of the code"
      • Code is considered more complex when "flow breaking structures are nested"

      Further reading

      Missing class import via use statement (line '38', column '16').
      Open

              $query = new \App\Db\Query();

      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

      Missing class import via use statement (line '41', column '19').
      Open

                  'count' => new \yii\db\Expression('COUNT(*)'),

      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 '\App\PrivilegeQuery' in method 'getLeadsByStatusConverted'.
      Open

              \App\PrivilegeQuery::getConditions($query, 'Leads');

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

                  $createdTime = Settings_WidgetsManagement_Module_Model::getDefaultDateRange($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 '\App\Language' in method 'getLeadsByStatusConverted'.
      Open

                  $chartData['labels'][] = \App\Language::translate($value, 'Leads');

      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\Fields\Date' in method 'process'.
      Open

              $createdTime = \App\Fields\Date::formatRangeToDisplay($createdTime);

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

                  $owner = Settings_WidgetsManagement_Module_Model::getDefaultUserId($widget, 'Leads');

      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($request->getInteger('linkid'), $currentUserId);

      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\Fields\Picklist' in method 'getLeadsByStatusConverted'.
      Open

              $colors = \App\Fields\Picklist::getColors('leadstatus');

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

              $currentUserId = \App\User::getCurrentUserId();

      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/LeadsByStatusConverted.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

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

                          'names' => [] // names for link generation

      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.

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

                  array_push($conditions, ['createdtime', 'bw', $dates[0] . ' 00:00:00,' . $dates[1] . ' 23:59:59']);

      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.

      Define a constant instead of duplicating this literal "Leads" 5 times.
      Open

              \App\PrivilegeQuery::getConditions($query, 'Leads');

      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.

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

                  'leadstatusvalue' => 'vtiger_leadstatus.leadstatus', ])

      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.

      Define a constant instead of duplicating this literal "datasets" 8 times.
      Open

                  'datasets' => [

      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('DTIME', $createdTime);

      Call to undeclared method \Vtiger_Viewer::assign
      Open

              $viewer->assign('ACCESSIBLE_USERS', \App\Fields\Owner::getInstance('Leads', $currentUserId)->getAccessibleUsersForModule());

      Call to undeclared method \App\Db\Query::andWhere
      Open

                  $query->andWhere(['between', 'createdtime', $dateFilter[0] . ' 00:00:00', $dateFilter[1] . ' 23:59:59']);

      Call to undeclared method \Vtiger_Viewer::assign
      Open

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

      Call to undeclared method \App\Db\Query::andWhere
      Open

                  $query->andWhere(['smownerid' => $owner]);

      Call to undeclared method \Vtiger_Viewer::assign
      Open

              $viewer->assign('ACCESSIBLE_GROUPS', \App\Fields\Owner::getInstance('Leads', $currentUserId)->getAccessibleGroupForModule());

      Call to method close from undeclared class \yii\db\DataReader
      Open

              $dataReader->close();

      Call to method getCurrentUserId from undeclared class \App\User (Did you mean class \Tests\App\User)
      Open

              $currentUserId = \App\User::getCurrentUserId();

      Call to method read from undeclared class \yii\db\DataReader
      Open

              while ($row = $dataReader->read()) {

      Call to method getInstance from undeclared class \App\Fields\Owner
      Open

              $viewer->assign('ACCESSIBLE_USERS', \App\Fields\Owner::getInstance('Leads', $currentUserId)->getAccessibleUsersForModule());

      Call to method __construct from undeclared class \yii\db\Expression
      Open

                  'count' => new \yii\db\Expression('COUNT(*)'),

      Call to undeclared method \App\Db\Query::groupBy
      Open

              $query->groupBy(['leadstatusvalue', 'vtiger_leadstatus.leadstatusid', 'vtiger_leadstatus.sortorderid'])->orderBy('vtiger_leadstatus.sortorderid');

      Call to undeclared method \Vtiger_Viewer::assign
      Open

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

      Call to undeclared method \App\Db\Query::select
      Open

              $query->select([

      Call to undeclared method \Vtiger_Viewer::assign
      Open

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

      Call to method getInstance from undeclared class \App\Fields\Owner
      Open

              $viewer->assign('ACCESSIBLE_GROUPS', \App\Fields\Owner::getInstance('Leads', $currentUserId)->getAccessibleGroupForModule());

      Call to method getInstance from undeclared class \Vtiger_Widget_Model
      Open

              $widget = Vtiger_Widget_Model::getInstance($request->getInteger('linkid'), $currentUserId);

      Call to undeclared method \Vtiger_Viewer::assign
      Open

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

      Similar blocks of code found in 2 locations. Consider refactoring.
      Open

          public function process(App\Request $request)
          {
              $currentUserId = \App\User::getCurrentUserId();
              $viewer = $this->getViewer($request);
              $moduleName = $request->getModule();
      Severity: Major
      Found in modules/Leads/dashboards/LeadsByStatusConverted.php and 1 other location - About 2 days to fix
      modules/Leads/dashboards/LeadsBySource.php on lines 80..119

      Duplicated Code

      Duplicated code can lead to software that is hard to understand and difficult to change. The Don't Repeat Yourself (DRY) principle states:

      Every piece of knowledge must have a single, unambiguous, authoritative representation within a system.

      When you violate DRY, bugs and maintenance problems are sure to follow. Duplicated code has a tendency to both continue to replicate and also to diverge (leaving bugs as two similar implementations differ in subtle ways).

      Tuning

      This issue has a mass of 486.

      We set useful threshold defaults for the languages we support but you may want to adjust these settings based on your project guidelines.

      The threshold configuration represents the minimum mass a code block must have to be analyzed for duplication. The lower the threshold, the more fine-grained the comparison.

      If the engine is too easily reporting duplication, try raising the threshold. If you suspect that the engine isn't catching enough duplication, try lowering the threshold. The best setting tends to differ from language to language.

      See codeclimate-duplication's documentation for more information about tuning the mass threshold in your .codeclimate.yml.

      Refactorings

      Further Reading

      Similar blocks of code found in 4 locations. Consider refactoring.
      Open

          public function getSearchParams($value, $assignedto, $dates)
          {
              $listSearchParams = [];
              $conditions = [['leadstatus', 'e', $value]];
              if ('' != $assignedto) {
      Severity: Major
      Found in modules/Leads/dashboards/LeadsByStatusConverted.php and 3 other locations - About 3 hrs to fix
      modules/Leads/dashboards/LeadsByIndustry.php on lines 14..26
      modules/Leads/dashboards/LeadsBySource.php on lines 14..26
      modules/Leads/dashboards/LeadsByStatus.php on lines 16..29

      Duplicated Code

      Duplicated code can lead to software that is hard to understand and difficult to change. The Don't Repeat Yourself (DRY) principle states:

      Every piece of knowledge must have a single, unambiguous, authoritative representation within a system.

      When you violate DRY, bugs and maintenance problems are sure to follow. Duplicated code has a tendency to both continue to replicate and also to diverge (leaving bugs as two similar implementations differ in subtle ways).

      Tuning

      This issue has a mass of 152.

      We set useful threshold defaults for the languages we support but you may want to adjust these settings based on your project guidelines.

      The threshold configuration represents the minimum mass a code block must have to be analyzed for duplication. The lower the threshold, the more fine-grained the comparison.

      If the engine is too easily reporting duplication, try raising the threshold. If you suspect that the engine isn't catching enough duplication, try lowering the threshold. The best setting tends to differ from language to language.

      See codeclimate-duplication's documentation for more information about tuning the mass threshold in your .codeclimate.yml.

      Refactorings

      Further Reading

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

      class Leads_LeadsByStatusConverted_Dashboard extends Vtiger_IndexAjax_View

      The class Leads_LeadsByStatusConverted_Dashboard is not named in CamelCase.
      Open

      class Leads_LeadsByStatusConverted_Dashboard extends Vtiger_IndexAjax_View
      {
          public function getSearchParams($value, $assignedto, $dates)
          {
              $listSearchParams = [];

      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

              $listSearchParams = [];

      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($dates)) {

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

              return '&search_params=' . json_encode($listSearchParams);

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

                  array_push($conditions, ['createdtime', 'bw', $dates[0] . ' 00:00:00,' . $dates[1] . ' 23:59:59']);

      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

           * Function returns Leads grouped by Status (converted).

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

           */

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

              $conditions = [['leadstatus', 'e', $value]];

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

           * @param array $dateFilter

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

                  array_push($conditions, ['assigned_user_id', 'e', $assignedto]);

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

                  ->innerJoin('vtiger_crmentity', 'vtiger_leaddetails.leadid = vtiger_crmentity.crmid')

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

          {

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

              $listSearchParams[] = $conditions;

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

          public function getLeadsByStatusConverted($owner, $dateFilter)

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

          {

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

                  ->innerJoin('vtiger_leadstatus', 'vtiger_leaddetails.leadstatus = vtiger_leadstatus.leadstatus')

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

              if (!empty($dateFilter)) {

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

              $colors = \App\Fields\Picklist::getColors('leadstatus');

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

                  $owner = Settings_WidgetsManagement_Module_Model::getDefaultUserId($widget, 'Leads');

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

              }

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

              $query = new \App\Db\Query();

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

                  'leadstatusvalue' => 'vtiger_leadstatus.leadstatus', ])

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

                  ->where(['deleted' => 0]);

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

              }

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

              $chartData['show_chart'] = (bool) \count($chartData['datasets'][0]['data']);

      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

              }

      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

              $query->select([

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

              if (!empty($owner)) {

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

                      $value = 'LBL_BLANK';

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

              if ('all' == $owner) {

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

           * @param int   $owner

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

                  $query->andWhere(['between', 'createdtime', $dateFilter[0] . ' 00:00:00', $dateFilter[1] . ' 23:59:59']);

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

                  $data['datasets'][0]['links'][$i] = $listViewUrl . '&viewname=All&entityState=Active' . $this->getSearchParams($data['datasets'][0]['names'][$i], $owner, $createdTime);

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

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

      Line exceeds 120 characters; contains 133 characters
      Open

              $viewer->assign('ACCESSIBLE_GROUPS', \App\Fields\Owner::getInstance('Leads', $currentUserId)->getAccessibleGroupForModule());

      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

          public function getSearchParams($value, $assignedto, $dates)

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

           * @return array

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

                  'leadstatusid' => 'vtiger_leadstatus.leadstatusid',

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

                  'count' => new \yii\db\Expression('COUNT(*)'),

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

              $query->groupBy(['leadstatusvalue', 'vtiger_leadstatus.leadstatusid', 'vtiger_leadstatus.sortorderid'])->orderBy('vtiger_leadstatus.sortorderid');

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

              $dataReader = $query->createCommand()->query();

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

                  if (empty($value)) {

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

              $currentUserId = \App\User::getCurrentUserId();

      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

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

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

          }

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

                  'show_chart' => false,

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

                  }

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

              $listViewUrl = Vtiger_Module_Model::getInstance($moduleName)->getListViewUrl();

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

              $chartData = [

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

                  $value = $row['leadstatusvalue'];

      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

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

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

                  $createdTime = Settings_WidgetsManagement_Module_Model::getDefaultDateRange($widget);

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

              $viewer->assign('DTIME', $createdTime);

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

              if ('' != $assignedto) {

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

              }

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

              \App\PrivilegeQuery::getConditions($query, 'Leads');

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

                  $chartData['datasets'][0]['backgroundColor'][] = $colors[$row['leadstatusid']];

      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

              for ($i = 0; $i < $leadStatusAmount; ++$i) {

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

              }

      Line exceeds 120 characters; contains 132 characters
      Open

              $viewer->assign('ACCESSIBLE_USERS', \App\Fields\Owner::getInstance('Leads', $currentUserId)->getAccessibleUsersForModule());

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

              }

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

                  ->from('vtiger_leaddetails')

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

                      ],

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

              while ($row = $dataReader->read()) {

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

          {

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

                          'data' => [],

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

                          'links' => [], // links generated in proccess method

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

                  $chartData['labels'][] = \App\Language::translate($value, 'Leads');

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

              if (empty($createdTime)) {

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

                  $query->andWhere(['smownerid' => $owner]);

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

              $dataReader->close();

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

          }

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

              $createdTime = $request->getDateRange('createdtime');

      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

              $ownerForwarded = $owner;

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

              $leadStatusAmount = \count($data['datasets'][0]['names']);

      Line exceeds 120 characters; contains 154 characters
      Open

              $query->groupBy(['leadstatusvalue', 'vtiger_leadstatus.leadstatusid', 'vtiger_leadstatus.sortorderid'])->orderBy('vtiger_leadstatus.sortorderid');

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

                          'names' => [] // names for link generation

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

                  ],

      Line exceeds 120 characters; contains 180 characters
      Open

                  $data['datasets'][0]['links'][$i] = $listViewUrl . '&viewname=All&entityState=Active' . $this->getSearchParams($data['datasets'][0]['names'][$i], $owner, $createdTime);

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

              $viewer->assign('ACCESSIBLE_USERS', \App\Fields\Owner::getInstance('Leads', $currentUserId)->getAccessibleUsersForModule());

      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

                  'datasets' => [

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

                  $owner = '';

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

              $createdTime = \App\Fields\Date::formatRangeToDisplay($createdTime);

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

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

      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

                  $chartData['datasets'][0]['names'][] = $value;

      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

              $widget = Vtiger_Widget_Model::getInstance($request->getInteger('linkid'), $currentUserId);

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

              $data = (false === $owner) ? [] : $this->getLeadsByStatusConverted($owner, $createdTime);

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

              //Include special script and css needed for this widget

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

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

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

                  'labels' => [],

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

                  $chartData['datasets'][0]['data'][] = (int) $row['count'];

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

              }

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

                          'backgroundColor' => [],

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

              return $chartData;

      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

              $viewer->assign('ACCESSIBLE_GROUPS', \App\Fields\Owner::getInstance('Leads', $currentUserId)->getAccessibleGroupForModule());

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

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

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

      class Leads_LeadsByStatusConverted_Dashboard extends Vtiger_IndexAjax_View

      There are no issues that match your filters.

      Category
      Status