public function PanelizerEntityTaxonomyTerm::entity_bundle_label in Panelizer 7.3
Same name and namespace in other branches
- 7.2 plugins/entity/PanelizerEntityTaxonomyTerm.class.php \PanelizerEntityTaxonomyTerm::entity_bundle_label()
Get the name of bundles on the entity.
Entity API doesn't give us a way to determine this, so the class must do this.
Return value
A translated, safe string.
Overrides PanelizerEntityDefault::entity_bundle_label
File
- plugins/
entity/ PanelizerEntityTaxonomyTerm.class.php, line 49 - Class for the Panelizer taxonomy term entity plugin.
Class
- PanelizerEntityTaxonomyTerm
- Panelizer Entity taxonomy term plugin class.
Code
public function entity_bundle_label() {
return t('Taxonomy vocabulary');
}