public function Drupal7::termName in Realistic Dummy Content 8.2
Same name and namespace in other branches
- 7.2 api/src/Framework/Drupal7.php \Drupal\realistic_dummy_content_api\Framework\Drupal7::termName()
File
- api/
src/ Framework/ Drupal7.php, line 495
Class
- Drupal7
- Drupal 7-specific code.
Namespace
Drupal\realistic_dummy_content_api\FrameworkCode
public function termName($term) {
if (isset($term->name) && $term->name) {
return $term->name;
}
else {
throw new \Exception('term name could not be determined');
}
}