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.

CamotionPermissions.php 1.0KB

1234567891011121314151617181920212223242526272829303132333435
  1. <?php
  2. namespace App\Http\DBO;
  3. /**
  4. * Created by PhpStorm.
  5. * User: robin
  6. * Date: 11/21/15
  7. * Time: 3:52 PM
  8. */
  9. class CamotionPermissions
  10. {
  11. const HOST_GET = "CAMOTION_HOST_GET";
  12. const HOST_ADD = "CAMOTION_HOST_ADD";
  13. const HOST_DEL = "CAMOTION_HOST_DEL";
  14. const HOST_EDIT = "CAMOTION_HOST_EDIT";
  15. const COMMAND_GET = "CAMOTION_COMMAND_GET";
  16. const COMMAND_ADD = "CAMOTION_COMMAND_ADD";
  17. const COMMAND_DEL = "CAMOTION_COMMAND_DEL";
  18. const COMMAND_EDIT = "CAMOTION_COMMAND_EDIT";
  19. const COMMAND_EXEC = "CAMOTION_COMMAND_EXEC";
  20. const SENSOR_GET = "CAMOTION_SENSOR_GET";
  21. const SENSOR_ADD = "CAMOTION_SENSOR_ADD";
  22. const SENSOR_DEL = "CAMOTION_SENSOR_DEL";
  23. const SENSOR_EDIT = "CAMOTION_SENSOR_EDIT";
  24. const SENSOR_EXEC = "CAMOTION_SENSOR_EXEC";
  25. const CAMERA_GET = "CAMOTION_CAMERA_GET";
  26. const CAMERA_ADD = "CAMOTION_CAMERA_ADD";
  27. const CAMERA_DEL = "CAMOTION_CAMERA_DEL";
  28. const CAMERA_EDIT = "CAMOTION_CAMERA_EDIT";
  29. const CAMERA_EXEC = "CAMOTION_CAMERA_EXEC";
  30. }