You are here

function colors_colors_build_selector in Colors 7

Implements hook_colors_build_selector().

Builds a selector string.

Parameters

$class: Class name used for the new selector string.

Return value

The built selector.

File

./colors.module, line 369
Provides an API to match selectors with a color configuration.

Code

function colors_colors_build_selector($class) {
  return $class;
}