Checkbox.php 291 B

12345678910111213141516
  1. <?php
  2. namespace ThurData\Servers\KerioEmail\Core\UI\Widget\Forms\Fields;
  3. /**
  4. * BaseField controler
  5. *
  6. * @autor ThurData <info@thurdata.ch>
  7. */
  8. class Checkbox extends BaseField
  9. {
  10. protected $id = 'basecheckbox';
  11. protected $name = 'basecheckbox';
  12. protected $width = 3;
  13. }