Rest.inc 425 B

1234567891011121314151617181920212223242526
  1. <?php
  2. class Rest
  3. {
  4. public function get($index)
  5. {
  6. if (isset($_GET[$index])) {
  7. return $_GET[$index];
  8. }
  9. throw new RestException();
  10. }
  11. public function getDefaulted($index, $defaultValue)
  12. {
  13. if (isset($_GET[$index])) {
  14. return $_GET[$index];
  15. } else {
  16. return $defaultValue;
  17. }
  18. }
  19. }
  20. class RestException extends Exception
  21. {
  22. }