You are here

function hook_colors_rebuild in Colors 7

Declare if the CSS file should be automatically rebuilt.

Return value

bool TRUE if the file should be rebuilt automatically, FALSE if it should be rebuilt at runtime.

1 invocation of hook_colors_rebuild()
colors_css_clear in ./colors.module
Removes the generated CSS file, optionally recreating it.

File

./colors.api.php, line 49
Hooks provided by the Colors module.

Code

function hook_colors_rebuild() {
  return TRUE;
}