You are here

function colors_get_color_options in Colors 7

Same name and namespace in other branches
  1. 8 colors.module \colors_get_color_options()

Gets all the color options.

Return value

Array containing all the possible colorable features.

File

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

Code

function colors_get_color_options($module = 'colors') {
  return array_keys(colors_invoke($module, 'colors_get_color_mapping'));
}