public function MemberCountBlock::defaultConfiguration in Organic groups 8
Overrides BlockPluginTrait::defaultConfiguration
1 call to MemberCountBlock::defaultConfiguration()
- MemberCountBlock::blockSubmit in src/
Plugin/ Block/ MemberCountBlock.php
File
- src/
Plugin/ Block/ MemberCountBlock.php, line 82
Class
- MemberCountBlock
- Provides a block that shows the number of members in the current group.
Namespace
Drupal\og\Plugin\BlockCode
public function defaultConfiguration() {
return [
'count_blocked_users' => FALSE,
'count_pending_users' => FALSE,
] + parent::defaultConfiguration();
}