Search moodle.org's
Developer Documentation

See Release Notes
Long Term Support Release

  • Bug fixes for general core bugs in 3.9.x will end* 10 May 2021 (12 months).
  • Bug fixes for security issues in 3.9.x will end* 8 May 2023 (36 months).
  • PHP version: minimum PHP 7.2.0 Note: minimum PHP version has increased since Moodle 3.8. PHP 7.3.x and 7.4.x are supported too.

Differences Between: [Versions 39 and 402] [Versions 39 and 403]

(no description)

File Size: 185 lines (6 kb)
Included or required:0 times
Referenced: 0 times
Includes or requires: 0 files

Defines 1 class

Google_Http_CacheParser:: (4 methods):
  isRequestCacheable()
  isResponseCacheable()
  isExpired()
  mustRevalidate()


Class: Google_Http_CacheParser  - X-Ref

Implement the caching directives specified in rfc2616. This
implementation is guided by the guidance offered in rfc2616-sec13.

isRequestCacheable(Google_Http_Request $resp)   X-Ref
Check if an HTTP request can be cached by a private local cache.

param: Google_Http_Request $resp
return: bool True if the request is cacheable.

isResponseCacheable(Google_Http_Request $resp)   X-Ref
Check if an HTTP response can be cached by a private local cache.

param: Google_Http_Request $resp
return: bool True if the response is cacheable.

isExpired(Google_Http_Request $resp)   X-Ref

param: Google_Http_Request $resp
return: bool True if the HTTP response is considered to be expired.

mustRevalidate(Google_Http_Request $response)   X-Ref
Determine if a cache entry should be revalidated with by the origin.

param: Google_Http_Request $response
return: bool True if the entry is expired, else return false.