You are here

function icon_bundle_load in Icon API 7

Same name and namespace in other branches
  1. 8 icon.module \icon_bundle_load()

Load a specific bundle.

Parameters

string $name: The name of the bundle to load.

Return value

array An associative array of bundle information as returned from icon_bundles().

5 calls to icon_bundle_load()
form_process_icon_selector in includes/element.inc
Processes an icon select list form element.
icon_bundle_delete in ./icon.module
Delete the icon bundle that matches {icon_bundle}.name in the database.
icon_bundle_save in ./icon.module
Save an icon bundle in the {icon_bundle} table.
icon_filter_preprocess_field in modules/icon_filter/icon_filter.module
Implements hook_field_prepare_view().
template_preprocess_icon in includes/theme.inc
Implements hook_preprocess_icon().
2 string references to 'icon_bundle_load'
icon_provider_import_form in includes/import.inc
Menu callback for 'icon_provider_import_form'.
icon_reset_static_cache in includes/cache.inc
Clears all static caches used by the icon module.

File

./icon.module, line 487
icon.module Provides icon integration with menu items.

Code

function icon_bundle_load($name) {
  $loaded =& drupal_static(__FUNCTION__, array());
  if (empty($loaded[$name])) {
    $loaded[$name] = icon_bundles($name);
  }
  return $loaded[$name];
}