php-yaoi/php-yaoi

View on GitHub
src/View/HTML/Checkbox.php

Summary

Maintainability
A
0 mins
Test Coverage
<?php

namespace Yaoi\View\HTML;

class Checkbox extends Input
{
    public function render()
    {
        $this->setAttribute('type', 'checkbox');
        if ($this->value) {
            $this->setAttribute('checked', 'checked');
        } else {
            $this->setAttribute('checked');
        }
        return parent::render();
    }
}