RawSection.php 312 B

12345678910111213141516
  1. <?php
  2. namespace ThurData\Servers\KerioEmail\Core\UI\Widget\Forms\Sections;
  3. /**
  4. * Base Form Section controler
  5. *
  6. * @autor ThurData <info@thurdata.ch>
  7. */
  8. class RawSection extends BaseSection
  9. {
  10. protected $id = 'rawSection';
  11. protected $name = 'rawSection';
  12. protected $class = ['lu-col-md-12'];
  13. }