InfoSettingDataProvider.php 920 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  1. <?php
  2. namespace ThurData\Servers\KerioEmail\App\UI\Client\Setting\Providers;
  3. use ThurData\Servers\KerioEmail\App\Enums\Kerio;
  4. use function ThurData\Servers\KerioEmail\Core\Helper\di;
  5. use ThurData\Servers\KerioEmail\Core\UI\ResponseTemplates\HtmlDataJsonResponse;
  6. use ThurData\Servers\KerioEmail\Core\UI\Widget\Forms\DataProviders\BaseDataProvider;
  7. use ThurData\Servers\KerioEmail\Api\KerioWhmcs;
  8. /**
  9. *
  10. * Created by PhpStorm.
  11. * User: ThurData
  12. * Date: 10.09.19
  13. * Time: 13:06
  14. * Class SettingDataProvider
  15. */
  16. class InfoSettingDataProvider extends BaseDataProvider
  17. {
  18. public function read()
  19. {
  20. logModuleCall(
  21. 'kerioEmail',
  22. __FUNCTION__,
  23. $this->data,
  24. 'Debug Data',
  25. $this->availableValues
  26. );
  27. }
  28. public function create()
  29. {
  30. }
  31. public function updateStatus()
  32. {
  33. }
  34. public function update()
  35. {
  36. }
  37. }