Pressbooks\GlobalTypography::getThemeFontStacks PHP Метод

getThemeFontStacks() публичный Метод

Get the current theme's font stacks.
public getThemeFontStacks ( string $type ) : string
$type string (prince, epub, web ...)
Результат string
    function getThemeFontStacks($type)
    {
        $return_value = '';
        $fullpath = Container::get('Sass')->pathToUserGeneratedSass() . "/_font-stack-{$type}.scss";
        if (is_file($fullpath)) {
            $return_value = file_get_contents($fullpath);
        }
        return $return_value;
    }