UserAnalyticsCommentsCreated.php in Open Social 10.0.x
Same filename and directory in other branches
- 8.9 modules/social_features/social_user_export/src/Plugin/UserExportPlugin/UserAnalyticsCommentsCreated.php
- 8.3 modules/social_features/social_user_export/src/Plugin/UserExportPlugin/UserAnalyticsCommentsCreated.php
- 8.4 modules/social_features/social_user_export/src/Plugin/UserExportPlugin/UserAnalyticsCommentsCreated.php
- 8.5 modules/social_features/social_user_export/src/Plugin/UserExportPlugin/UserAnalyticsCommentsCreated.php
- 8.6 modules/social_features/social_user_export/src/Plugin/UserExportPlugin/UserAnalyticsCommentsCreated.php
- 8.7 modules/social_features/social_user_export/src/Plugin/UserExportPlugin/UserAnalyticsCommentsCreated.php
- 8.8 modules/social_features/social_user_export/src/Plugin/UserExportPlugin/UserAnalyticsCommentsCreated.php
- 10.3.x modules/social_features/social_user_export/src/Plugin/UserExportPlugin/UserAnalyticsCommentsCreated.php
- 10.1.x modules/social_features/social_user_export/src/Plugin/UserExportPlugin/UserAnalyticsCommentsCreated.php
- 10.2.x modules/social_features/social_user_export/src/Plugin/UserExportPlugin/UserAnalyticsCommentsCreated.php
File
modules/social_features/social_user_export/src/Plugin/UserExportPlugin/UserAnalyticsCommentsCreated.phpView source
<?php
namespace Drupal\social_user_export\Plugin\UserExportPlugin;
use Drupal\social_user_export\Plugin\UserExportPluginBase;
use Drupal\user\UserInterface;
/**
* Provides a 'UserAnalyticsCommentsCreated' user export row.
*
* @UserExportPlugin(
* id = "user_comments_created",
* label = @Translation("Comments created"),
* weight = -240,
* )
*/
class UserAnalyticsCommentsCreated extends UserExportPluginBase {
/**
* {@inheritdoc}
*/
public function getHeader() {
return $this
->t('Comments created');
}
/**
* {@inheritdoc}
*/
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();
}
}
Classes
Name | Description |
---|---|
UserAnalyticsCommentsCreated | Provides a 'UserAnalyticsCommentsCreated' user export row. |