function icon_bundle_get_title in Icon API 8
Same name and namespace in other branches
- 7 icon.module \icon_bundle_get_title()
Helper function to return the page title for bundles.
File
- ./
icon.module, line 515 - icon.module Provides icon integration with menu items.
Code
function icon_bundle_get_title($bundle) {
return !empty($bundle['title']) ? $bundle['title'] : t('Bundle');
}