handler.php 549 B

12345678910111213141516171819202122232425262728293031
  1. <?php
  2. // when scanning process starts
  3. function aibolit_onStart() {
  4. // TODO...
  5. }
  6. // when scanning process ends
  7. function aibolit_onComplete($exit_code, $stat) {
  8. // TODO...
  9. }
  10. // when progress updates
  11. function aibolit_onProgressUpdate($data) {
  12. // TODO...
  13. }
  14. // error when reading file
  15. function aibolit_onReadError($path, $type) {
  16. // TODO...
  17. }
  18. // when skips big file
  19. function aibolit_onBigFile($path) {
  20. // TODO...
  21. }
  22. // when some fatal error occurs
  23. function aibolit_onFatalError($errstr) {
  24. // TODO...
  25. }