You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

SupportOnlineAdminSetting.php 398B

1234567891011121314151617
  1. <?php
  2. namespace domain\Setting\SettingDetails\Admin\General;
  3. use domain\Setting\SettingDetails\AbstractSettingDetail;
  4. class SupportOnlineAdminSetting extends AbstractSettingDetail
  5. {
  6. public function __construct()
  7. {
  8. $this
  9. ->setName('supportOnline')
  10. ->setLabel("Support : disponible")
  11. ->setTypeBoolean()
  12. ->setFormTypeToggle();
  13. }
  14. }