You are here

function themekey_check_css_exists in ThemeKey 7.3

1 call to themekey_check_css_exists()
themekey_css_scan in themekey_css/themekey_css_build.inc
2 string references to 'themekey_check_css_exists'
themekey_css_init in themekey_css/themekey_css.module
Implements hook_init().
themekey_css_rule_chain_form_validate in themekey_css/themekey_css_admin.inc
Validation of

File

themekey_css/themekey_css.module, line 62

Code

function themekey_check_css_exists($css_file) {
  return is_readable(DRUPAL_ROOT . '/' . $css_file);
}