yupe\helpers\Html::label PHP Method

label() public static method

public static label ( $status, $text, array $map ) : string
$status
$text
$map array
return string
    public static function label($status, $text, array $map)
    {
        if (!isset($map[$status]) || $map[$status] === self::DEF) {
            return static::def($text);
        }
        return static::{$map[$status]}($text);
    }