You are here

public function UserAnalyticsCommentsCreated::getValue in Open Social 8.9

Same name and namespace in other branches
  1. 8.3 modules/social_features/social_user_export/src/Plugin/UserExportPlugin/UserAnalyticsCommentsCreated.php \Drupal\social_user_export\Plugin\UserExportPlugin\UserAnalyticsCommentsCreated::getValue()
  2. 8.4 modules/social_features/social_user_export/src/Plugin/UserExportPlugin/UserAnalyticsCommentsCreated.php \Drupal\social_user_export\Plugin\UserExportPlugin\UserAnalyticsCommentsCreated::getValue()
  3. 8.5 modules/social_features/social_user_export/src/Plugin/UserExportPlugin/UserAnalyticsCommentsCreated.php \Drupal\social_user_export\Plugin\UserExportPlugin\UserAnalyticsCommentsCreated::getValue()
  4. 8.6 modules/social_features/social_user_export/src/Plugin/UserExportPlugin/UserAnalyticsCommentsCreated.php \Drupal\social_user_export\Plugin\UserExportPlugin\UserAnalyticsCommentsCreated::getValue()
  5. 8.7 modules/social_features/social_user_export/src/Plugin/UserExportPlugin/UserAnalyticsCommentsCreated.php \Drupal\social_user_export\Plugin\UserExportPlugin\UserAnalyticsCommentsCreated::getValue()
  6. 8.8 modules/social_features/social_user_export/src/Plugin/UserExportPlugin/UserAnalyticsCommentsCreated.php \Drupal\social_user_export\Plugin\UserExportPlugin\UserAnalyticsCommentsCreated::getValue()
  7. 10.3.x modules/social_features/social_user_export/src/Plugin/UserExportPlugin/UserAnalyticsCommentsCreated.php \Drupal\social_user_export\Plugin\UserExportPlugin\UserAnalyticsCommentsCreated::getValue()
  8. 10.0.x modules/social_features/social_user_export/src/Plugin/UserExportPlugin/UserAnalyticsCommentsCreated.php \Drupal\social_user_export\Plugin\UserExportPlugin\UserAnalyticsCommentsCreated::getValue()
  9. 10.1.x modules/social_features/social_user_export/src/Plugin/UserExportPlugin/UserAnalyticsCommentsCreated.php \Drupal\social_user_export\Plugin\UserExportPlugin\UserAnalyticsCommentsCreated::getValue()
  10. 10.2.x modules/social_features/social_user_export/src/Plugin/UserExportPlugin/UserAnalyticsCommentsCreated.php \Drupal\social_user_export\Plugin\UserExportPlugin\UserAnalyticsCommentsCreated::getValue()

Returns the value.

Parameters

\Drupal\user\UserInterface $entity: The User entity to get the value from.

Return value

string The value.

Overrides UserExportPluginBase::getValue

File

modules/social_features/social_user_export/src/Plugin/UserExportPlugin/UserAnalyticsCommentsCreated.php, line 29

Class

UserAnalyticsCommentsCreated
Provides a 'UserAnalyticsCommentsCreated' user export row.

Namespace

Drupal\social_user_export\Plugin\UserExportPlugin

Code

public function getValue(UserInterface $entity) {
  $query = $this->database
    ->select('comment', 'c');
  $query
    ->join('comment_field_data', 'cfd', 'cfd.cid = c.cid');
  $query
    ->condition('cfd.uid', $entity
    ->id());
  return (int) $query
    ->countQuery()
    ->execute()
    ->fetchField();
}