You are here

function theme_location_bundle_overview in Location 7.4

1 theme call to theme_location_bundle_overview()
location_overview_bundles in ./location.admin.inc
Bundle overview page.

File

./location.admin.inc, line 425
Admin forms for Location.

Code

function theme_location_bundle_overview($variables) {
  $name = $variables['name'];
  $bundle = $variables['bundle'];
  $output = check_plain($name);
  $output .= ' <small> (Machine name: ' . check_plain($bundle->bundle) . ')</small>';
  $output .= '<div class="description">' . filter_xss_admin($bundle->description) . '</div>';
  return $output;
}