recherd.php 647 B

1234567891011121314151617181920212223
  1. <?php
  2. if (ubRouting::get('action') == 'recherd') {
  3. if (ubRouting::checkGet('cameraid')) {
  4. /**
  5. * .------------------------.
  6. * |\\//////// 120 min |
  7. * | \/ __ ______ __ |
  8. * | / \|\.....|/ \ |
  9. * | \__/|/_____|\__/ |
  10. * | VHS |
  11. * | ________________ |
  12. * |___/_._o________o_._\___|
  13. *
  14. */
  15. $cameraId = ubRouting::get('cameraid', 'int');
  16. $recorder = new Recorder();
  17. $recorder->runRecord($cameraId);
  18. die('OK:RECHERD');
  19. } else {
  20. die('ERROR:NO_CAMERAID');
  21. }
  22. }