You are here

function ctools_css_filter_default_allowed_values in Chaos Tool Suite (ctools) 7

Same name and namespace in other branches
  1. 6 includes/css.inc \ctools_css_filter_default_allowed_values()

Provide a default list of allowed values by the filter.

1 call to ctools_css_filter_default_allowed_values()
ctools_css_filter_css_data in includes/css.inc
Run disassembled $css through the filter.

File

includes/css.inc, line 509
CSS filtering functions. Contains a disassembler, filter, compressor, and decompressor.

Code

function ctools_css_filter_default_allowed_values() {
  return array(
    'auto',
    'aqua',
    'black',
    'block',
    'blue',
    'bold',
    'both',
    'bottom',
    'brown',
    'capitalize',
    'center',
    'collapse',
    'dashed',
    'dotted',
    'fuchsia',
    'gray',
    'green',
    'italic',
    'inherit',
    'left',
    'lime',
    'lowercase',
    'maroon',
    'medium',
    'navy',
    'normal',
    'nowrap',
    'olive',
    'pointer',
    'purple',
    'red',
    'right',
    'solid',
    'silver',
    'teal',
    'top',
    'transparent',
    'underline',
    'uppercase',
    'white',
    'yellow',
  );
}