v1.php 255 B

123456789101112131415
  1. <?php
  2. namespace zin;
  3. require_once dirname(__DIR__) . DS . 'checkbox' . DS . 'v1.php';
  4. class switcher extends checkbox
  5. {
  6. /**
  7. * @var mixed[]
  8. */
  9. protected static $defaultProps = array
  10. (
  11. 'typeClass' => 'switch switch'
  12. );
  13. }