BcFreezeHelper::radio PHP Method

radio() public method

ラジオボタンを表示する
public radio ( string $fieldName, array $options = [], array $attributes = [] ) : string
$fieldName string フィールド文字列
$options array コントロールソース
$attributes array html属性
return string htmlタグ
    public function radio($fieldName, $options = array(), $attributes = array())
    {
        if ($this->freezed) {
            return $this->freezeControll($fieldName, $options, $attributes);
        } else {
            return parent::radio($fieldName, $options, $attributes);
        }
    }