MC4WP_Form_Asset_Manager::get_stylesheet_url PHP Method

get_stylesheet_url() public method

public get_stylesheet_url ( string $stylesheet ) : string
$stylesheet string
return string
    public function get_stylesheet_url($stylesheet)
    {
        if (!$this->is_registered_stylesheet($stylesheet)) {
            return '';
        }
        $suffix = $this->filename_suffix;
        return MC4WP_PLUGIN_URL . 'assets/css/form-' . $stylesheet . $suffix . '.css';
    }