1 drupal.inc views_clean_css_identifier($identifier, $filter = array(' ' => '-', '/' => '-', '[' => '-', ']' => ''))

Drupal-compatible wrapper for creating safe CSS identifiers.

@since 1.13.1 Function added.

Deprecated

since 1.0.0

Related topics

File

core/includes/drupal.inc, line 2589
Contains constants and function wrappers for Drupal 7.x compatibility.

Code

function views_clean_css_identifier($identifier, $filter = array(' ' => '-', '/' => '-', '[' => '-', ']' => '')) {
  watchdog_deprecated_function('drupal', __FUNCTION__);
  backdrop_clean_css_identifier($identifier, $filter);
}