You are here

private property CSSCompression_Combine_Background::$groupings in Advanced CSS/JS Aggregation 7

Same name and namespace in other branches
  1. 6 advagg_css_compress/css-compressor-3.x/src/lib/Combine/Background.inc \CSSCompression_Combine_Background::groupings

File

advagg_css_compress/css-compressor-3.x/src/lib/Combine/Background.inc, line 20

Class

CSSCompression_Combine_Background
CSS Compressor [VERSION] [DATE] Corey Hart @ http://www.codenothing.com

Code

private $groupings = array(
  // With color
  array(
    'color',
    'image',
    'repeat',
    'attachment',
    'position',
  ),
  array(
    'color',
    'image',
    'attachment',
    'position',
  ),
  array(
    'color',
    'image',
    'repeat',
    'position',
  ),
  array(
    'color',
    'image',
    'repeat',
    'attachment',
  ),
  array(
    'color',
    'image',
    'repeat',
  ),
  array(
    'color',
    'image',
    'attachment',
  ),
  array(
    'color',
    'image',
    'position',
  ),
  array(
    'color',
    'image',
  ),
  // Without Color
  array(
    'image',
    'attachment',
    'position',
  ),
  array(
    'image',
    'repeat',
    'position',
  ),
  array(
    'image',
    'repeat',
    'attachment',
  ),
  array(
    'image',
    'repeat',
  ),
  array(
    'image',
    'attachment',
  ),
  array(
    'image',
    'position',
  ),
  // Just Color/Image
  array(
    'image',
  ),
  array(
    'color',
  ),
);