You are here

public function SocialTaggingService::allowSplit in Open Social 8.9

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

Returns whether splitting of fields is allowed.

Return value

bool Whether category split on field level is turned on or not.

1 call to SocialTaggingService::allowSplit()
SocialTaggingService::buildHierarchy in modules/social_features/social_tagging/src/SocialTaggingService.php
Returns a multilevel tree.

File

modules/social_features/social_tagging/src/SocialTaggingService.php, line 101

Class

SocialTaggingService
Provides a custom tagging service.

Namespace

Drupal\social_tagging

Code

public function allowSplit() {
  return (bool) ($this
    ->active() && $this->configFactory
    ->get('social_tagging.settings')
    ->get('allow_category_split'));
}