function ctools_stylizer_get_css_class

Get the class to use for a stylizer plugin.

1 call to ctools_stylizer_get_css_class()
ctools_stylizer_build_style in includes/stylizer.inc
Build the files for a stylizer given the proper settings.

File

includes/stylizer.inc, line 229

Code

function ctools_stylizer_get_css_class($plugin, $settings) {
    ctools_include('cleanstring');
    return ctools_cleanstring($plugin['name'] . '-' . ctools_stylizer_get_settings_name($settings));
}