15 lines
190 B
PHP
15 lines
190 B
PHP
<?php
|
|
|
|
|
|
namespace App\View;
|
|
|
|
|
|
class CheckboxWidget extends Widget
|
|
{
|
|
public function checked($condition=true)
|
|
{
|
|
$this->value = (bool)$condition;
|
|
return $this;
|
|
}
|
|
}
|