YetiForceCompany/YetiForceCRM

View on GitHub
modules/Accounts/dashboards/AccountsByIndustry.php

Summary

Maintainability
A
3 hrs
Test Coverage
F
0%

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

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

    Method process has 37 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/Accounts/dashboards/AccountsByIndustry.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/Accounts/dashboards/AccountsByIndustry.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

      The class Accounts_AccountsByIndustry_Dashboard has a coupling between objects value of 13. Consider to reduce the number of dependencies under 13.
      Open

      class Accounts_AccountsByIndustry_Dashboard extends Vtiger_IndexAjax_View
      {
          /**
           * Function to get params to searching in listview.
           *

      CouplingBetweenObjects

      Since: 1.1.0

      A class with too many dependencies has negative impacts on several quality aspects of a class. This includes quality criteria like stability, maintainability and understandability

      Example

      class Foo {
          /**
           * @var \foo\bar\X
           */
          private $x = null;
      
          /**
           * @var \foo\bar\Y
           */
          private $y = null;
      
          /**
           * @var \foo\bar\Z
           */
          private $z = null;
      
          public function setFoo(\Foo $foo) {}
          public function setBar(\Bar $bar) {}
          public function setBaz(\Baz $baz) {}
      
          /**
           * @return \SplObjectStorage
           * @throws \OutOfRangeException
           * @throws \InvalidArgumentException
           * @throws \ErrorException
           */
          public function process(\Iterator $it) {}
      
          // ...
      }

      Source https://phpmd.org/rules/design.html#couplingbetweenobjects

      Missing class import via use statement (line '50', column '27').
      Open

                  'industryvalue' => new \yii\db\Expression("CASE WHEN vtiger_account.industry IS NULL OR vtiger_account.industry = '' THEN '' ELSE vtiger_account.industry END"), ])

      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 '46', 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 '49', 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 'getAccountsByIndustry'.
      Open

              \App\PrivilegeQuery::getConditions($query, $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\Fields\Picklist' in method 'getAccountsByIndustry'.
      Open

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

      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

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

                  $chartData['labels'][] = \App\Language::translate($row['industryvalue'], $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 '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

      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/AccountsByIndustry.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 '\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 'App\Json' in method 'getSearchParams'.
      Open

              return '&search_params=' . App\Json::encode($listSearchParams);

      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

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

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

      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

      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 "Accounts" 4 times.
      Open

              $moduleName = 'Accounts';

      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', implode(',', $dates)]);

      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 "industryvalue" 4 times.
      Open

                  'industryvalue' => new \yii\db\Expression("CASE WHEN vtiger_account.industry IS NULL OR vtiger_account.industry = '' THEN '' ELSE vtiger_account.industry END"), ])

      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 "industryid" 3 times.
      Open

                  'industryid' => 'vtiger_industry.industryid',

      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" 9 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 method read from undeclared class \yii\db\DataReader
      Open

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

      Call to undeclared method \Vtiger_Viewer::assign
      Open

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

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

              $query->select([

      Call to undeclared method \Vtiger_Viewer::assign
      Open

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

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

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

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

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

      Call to undeclared method \Vtiger_Viewer::assign
      Open

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

      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('WIDGET', $widget);

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

              $query->groupBy(['vtiger_industry.sortorderid', 'industryvalue', 'vtiger_industry.industryid'])->orderBy('vtiger_industry.sortorderid');

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

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

      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('Accounts', $currentUserId)->getAccessibleUsersForModule());

      Call to undeclared method \Vtiger_Viewer::assign
      Open

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

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

              $dataReader->close();

      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 method getInstance from undeclared class \App\Fields\Owner
      Open

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

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

                  'industryvalue' => new \yii\db\Expression("CASE WHEN vtiger_account.industry IS NULL OR vtiger_account.industry = '' THEN '' ELSE vtiger_account.industry END"), ])

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

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

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

      class Accounts_AccountsByIndustry_Dashboard extends Vtiger_IndexAjax_View

      The class Accounts_AccountsByIndustry_Dashboard is not named in CamelCase.
      Open

      class Accounts_AccountsByIndustry_Dashboard extends Vtiger_IndexAjax_View
      {
          /**
           * Function to get params to searching in listview.
           *

      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

              }

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

           * Function to get data to display chart.

      Line exceeds 120 characters; contains 175 characters
      Open

                  'industryvalue' => new \yii\db\Expression("CASE WHEN vtiger_account.industry IS NULL OR vtiger_account.industry = '' THEN '' ELSE vtiger_account.industry END"), ])

      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]['borderColor'][] = $colors[$row['industryid']];

      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

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

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

          {

      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

              $query->groupBy(['vtiger_industry.sortorderid', 'industryvalue', 'vtiger_industry.industryid'])->orderBy('vtiger_industry.sortorderid');

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

                  $chartData['datasets'][0]['names'][] = $row['industryvalue'];

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

                  'industryid' => 'vtiger_industry.industryid',

      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

                  'datasets' => [

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

                          'tooltips' => [],

      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

                  ->innerJoin('vtiger_industry', 'vtiger_account.industry = vtiger_industry.industry')

      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

          /**

      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

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

      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

           * Function to get params to searching in listview.

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

                  'show_chart' => false,

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

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

      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

          {

      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

              $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

                  'industryvalue' => new \yii\db\Expression("CASE WHEN vtiger_account.industry IS NULL OR vtiger_account.industry = '' THEN '' ELSE vtiger_account.industry END"), ])

      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

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

      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

           * @return array

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

           */

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

                          'borderColor' => [],

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

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

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

           * Process.

      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

           * @param int   $owner

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

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

      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

              $ownerForwarded = $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

           *

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

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

      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

              $query->select([

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

      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['labels'][] = \App\Language::translate($row['industryvalue'], $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

           * @param \App\Request $request

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

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

      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

                  array_push($conditions, ['createdtime', 'bw', implode(',', $dates)]);

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

                  ->from('vtiger_account')

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

                  ->innerJoin('vtiger_crmentity', 'vtiger_account.accountid = vtiger_crmentity.crmid')

      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

                      [

      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 $chartData;

      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

                  $owner = '';

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

           * @param array  $dates

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

              $conditions = [['industry', 'e', $industry]];

      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

              return '&search_params=' . App\Json::encode($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

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

      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

              \App\PrivilegeQuery::getConditions($query, $moduleName);

      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

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

      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 = \App\Fields\Date::formatRangeToDisplay($createdTime);

      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

              }

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

              //Include special script and css needed for this widget

      Line exceeds 120 characters; contains 135 characters
      Open

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

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

           * @param string $industry

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

           * @param int    $assignedto

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

           * @return string

      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

          public function getAccountsByIndustry($owner, $dateFilter)

      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

              }

      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

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

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

              $listViewUrl = $moduleModel->getListViewUrl();

      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('DATA', $data);

      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

              $moduleName = 'Accounts';

      Line exceeds 120 characters; contains 144 characters
      Open

              $query->groupBy(['vtiger_industry.sortorderid', 'industryvalue', 'vtiger_industry.industryid'])->orderBy('vtiger_industry.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

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

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

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

      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

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

      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('ACCESSIBLE_GROUPS', \App\Fields\Owner::getInstance('Accounts', $currentUserId)->getAccessibleGroupForModule());

      Line exceeds 120 characters; contains 136 characters
      Open

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

      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

              $data = $this->getAccountsByIndustry($owner, $createdTime);

      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 ($request->has('content')) {

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

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

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

      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

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

      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('OWNER', $ownerForwarded);

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

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

      class Accounts_AccountsByIndustry_Dashboard extends Vtiger_IndexAjax_View

      There are no issues that match your filters.

      Category
      Status