From 615c9f1cbe2ccf9c33b035bcf04c5bc6bf64c7ed Mon Sep 17 00:00:00 2001 From: Mario Date: Fri, 11 Feb 2022 09:27:57 +0000 Subject: composer update smarty to version 4.1 - new files --- .../api-functions/api-clear-all-cache.md | 37 ++++++++++++++++++++++ 1 file changed, 37 insertions(+) create mode 100644 vendor/smarty/smarty/docs/programmers/api-functions/api-clear-all-cache.md (limited to 'vendor/smarty/smarty/docs/programmers/api-functions/api-clear-all-cache.md') diff --git a/vendor/smarty/smarty/docs/programmers/api-functions/api-clear-all-cache.md b/vendor/smarty/smarty/docs/programmers/api-functions/api-clear-all-cache.md new file mode 100644 index 000000000..55cbe5795 --- /dev/null +++ b/vendor/smarty/smarty/docs/programmers/api-functions/api-clear-all-cache.md @@ -0,0 +1,37 @@ +clearAllCache() + +clears the entire template cache + +Description +=========== + +void + +clearAllCache + +int + +expire\_time + +As an optional parameter, you can supply a minimum age in seconds the +cache files must be before they will get cleared. + +> **Note** +> +> Since Smarty version 3.1.14 it is possible to delete cache files by +> their individual expiration time at creation by passing constant +> SMARTY::CLEAR\_EXPIRED as `expire_time` parameter. + + + clearAllCache(); + + // clears all files over one hour old + $smarty->clearAllCache(3600); + ?> + + + +See also [`clearCache()`](#api.clear.cache), +[`isCached()`](#api.is.cached) and the [caching](#caching) page. -- cgit v1.2.3