14 lines
250 B
PHP
14 lines
250 B
PHP
<?php
|
|
declare(strict_types=1);
|
|
namespace zin;
|
|
|
|
require_once dirname(__DIR__) . DS . 'checkbox' . DS . 'v1.php';
|
|
|
|
class switcher extends checkbox
|
|
{
|
|
protected static array $defaultProps = array
|
|
(
|
|
'typeClass' => 'switch switch'
|
|
);
|
|
}
|