1 common.inc backdrop_region_class($region)

Provides a standard HTML class name that identifies a page region.

It is recommended that template preprocess functions apply this class to any page region that is output by the theme (Backdrop core already handles this in the standard template preprocess implementation). Standardizing the class names in this way allows modules to implement certain features, such as drag-and-drop or dynamic Ajax loading, in a theme-independent way.

Parameters

$region: The name of the page region (for example, 'page_bottom' or 'content').

Return value

An HTML class that identifies the region (for example, 'region-page-top': or 'region-content').

See also

template_preprocess_region()

File

core/includes/common.inc, line 4471
Common functions that many Backdrop modules will need to reference.

Code

function backdrop_region_class($region) {
  return backdrop_html_class("region-$region");
}