You are here

protected function ActivityOverviewBlock::getPostsCount in Open Social 8.8

Same name and namespace in other branches
  1. 8.9 modules/social_features/social_landing_page/src/Plugin/Block/ActivityOverviewBlock.php \Drupal\social_landing_page\Plugin\Block\ActivityOverviewBlock::getPostsCount()
  2. 8 modules/social_features/social_landing_page/src/Plugin/Block/ActivityOverviewBlock.php \Drupal\social_landing_page\Plugin\Block\ActivityOverviewBlock::getPostsCount()
  3. 8.2 modules/social_features/social_landing_page/src/Plugin/Block/ActivityOverviewBlock.php \Drupal\social_landing_page\Plugin\Block\ActivityOverviewBlock::getPostsCount()
  4. 8.3 modules/social_features/social_landing_page/src/Plugin/Block/ActivityOverviewBlock.php \Drupal\social_landing_page\Plugin\Block\ActivityOverviewBlock::getPostsCount()
  5. 8.4 modules/social_features/social_landing_page/src/Plugin/Block/ActivityOverviewBlock.php \Drupal\social_landing_page\Plugin\Block\ActivityOverviewBlock::getPostsCount()
  6. 8.5 modules/social_features/social_landing_page/src/Plugin/Block/ActivityOverviewBlock.php \Drupal\social_landing_page\Plugin\Block\ActivityOverviewBlock::getPostsCount()
  7. 8.6 modules/social_features/social_landing_page/src/Plugin/Block/ActivityOverviewBlock.php \Drupal\social_landing_page\Plugin\Block\ActivityOverviewBlock::getPostsCount()
  8. 8.7 modules/social_features/social_landing_page/src/Plugin/Block/ActivityOverviewBlock.php \Drupal\social_landing_page\Plugin\Block\ActivityOverviewBlock::getPostsCount()
  9. 10.3.x modules/social_features/social_landing_page/src/Plugin/Block/ActivityOverviewBlock.php \Drupal\social_landing_page\Plugin\Block\ActivityOverviewBlock::getPostsCount()
  10. 10.0.x modules/social_features/social_landing_page/src/Plugin/Block/ActivityOverviewBlock.php \Drupal\social_landing_page\Plugin\Block\ActivityOverviewBlock::getPostsCount()
  11. 10.1.x modules/social_features/social_landing_page/src/Plugin/Block/ActivityOverviewBlock.php \Drupal\social_landing_page\Plugin\Block\ActivityOverviewBlock::getPostsCount()
  12. 10.2.x modules/social_features/social_landing_page/src/Plugin/Block/ActivityOverviewBlock.php \Drupal\social_landing_page\Plugin\Block\ActivityOverviewBlock::getPostsCount()

Get total count of posts.

1 call to ActivityOverviewBlock::getPostsCount()
ActivityOverviewBlock::build in modules/social_features/social_landing_page/src/Plugin/Block/ActivityOverviewBlock.php
Builds and returns the renderable array for this block plugin.

File

modules/social_features/social_landing_page/src/Plugin/Block/ActivityOverviewBlock.php, line 326

Class

ActivityOverviewBlock
Provides a 'ActivityOverviewBlock' block.

Namespace

Drupal\social_landing_page\Plugin\Block

Code

protected function getPostsCount() {
  $query = $this->connection
    ->select('post_field_data', 'p');
  $query
    ->addExpression('COUNT(*)');
  $query
    ->condition('p.status', 1);
  return $query
    ->execute()
    ->fetchField();
}