Carbon_Fields\Container\Theme_Options_Container::clear_string PHP Method

clear_string() protected method

Sanitize the container title for use in the theme options file name.
protected clear_string ( $string )
    protected function clear_string($string)
    {
        return preg_replace(array('~ +~', '~[^\\w\\d-]+~u', '~-+~'), array('-', '-', '-'), strtolower(remove_accents($string)));
    }