public function ContributorPropertiesService::getDefaultCategory in Bibliography & Citation 2.0.x
Same name and namespace in other branches
- 8 modules/bibcite_entity/src/ContributorPropertiesService.php \Drupal\bibcite_entity\ContributorPropertiesService::getDefaultCategory()
Get first element of category list.
Return value
string|null Default category string.
Overrides ContributorPropertiesServiceInterface::getDefaultCategory
File
- modules/
bibcite_entity/ src/ ContributorPropertiesService.php, line 38
Class
- ContributorPropertiesService
- Class ContributorPropertiesService.
Namespace
Drupal\bibcite_entityCode
public function getDefaultCategory() {
$list = $this
->getCategories();
if (!empty($list)) {
reset($list);
return key($list);
}
else {
return NULL;
}
}