Backend\Core\Engine\TemplateModifiers::toLabel PHP 메소드

toLabel() 공개 정적인 메소드

syntax: {{ var|tolabel }}.
public static toLabel ( string $value ) : string
$value string The value to convert to a label.
리턴 string
    public static function toLabel($value)
    {
        return \SpoonFilter::ucfirst(BackendLanguage::lbl(\SpoonFilter::toCamelCase($value, '_', false)));
    }