Craft\FormBuilder2TwigExtension::replaceUnderscoreWithSpace PHP Метод

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

public replaceUnderscoreWithSpace ( $string )
    public function replaceUnderscoreWithSpace($string)
    {
        $output = str_replace('_', ' ', $string);
        return $output;
    }