You are here

function theme_themekey_css_rule_chain_form in ThemeKey 7.3

Themes themekey_css_rule_chain_form() and adds drag'n'drop features.

File

themekey_css/themekey_css_admin.inc, line 119

Code

function theme_themekey_css_rule_chain_form($variables) {
  return theme_themekey_abstract_rule_chain_form($variables, array(
    'header' => array(
      t('Adding CSS Rule Chain'),
      t('CSS file'),
      t('CSS group'),
      t('CSS weight'),
      t('Enabled'),
      t('Operation'),
      t('Parent'),
      t('Weight'),
      t('Page<br />Cache'),
    ),
    'additional_fields' => array(
      'css_group',
      'css_weight',
    ),
  ));
}