summaryrefslogtreecommitdiff
path: root/inc/cache.php
diff options
context:
space:
mode:
authorGerrit Uitslag <klapinklapin@gmail.com>2014-02-18 00:54:21 +0100
committerGerrit Uitslag <klapinklapin@gmail.com>2014-02-18 00:54:21 +0100
commitcefd14cbc4f6dabfb2fb7b7ffb6b68d4501afd4f (patch)
tree12de9c38fe26fa0e7f8b32de4abd30ce946c1c70 /inc/cache.php
parent5965f64b985361323931454deffb806ec6c8695b (diff)
downloadrpg-cefd14cbc4f6dabfb2fb7b7ffb6b68d4501afd4f.tar.gz
rpg-cefd14cbc4f6dabfb2fb7b7ffb6b68d4501afd4f.tar.bz2
PHPDocs of cache classes
Diffstat (limited to 'inc/cache.php')
-rw-r--r--inc/cache.php12
1 files changed, 12 insertions, 0 deletions
diff --git a/inc/cache.php b/inc/cache.php
index 8c23bd09b..5f54a34a9 100644
--- a/inc/cache.php
+++ b/inc/cache.php
@@ -8,6 +8,9 @@
if(!defined('DOKU_INC')) die('meh.');
+/**
+ * Generic handling of caching
+ */
class cache {
public $key = ''; // primary identifier for this item
public $ext = ''; // file ext for cache data, secondary identifier for this item
@@ -162,6 +165,9 @@ class cache {
}
}
+/**
+ * Parser caching
+ */
class cache_parser extends cache {
public $file = ''; // source file for cache
@@ -213,6 +219,9 @@ class cache_parser extends cache {
}
+/**
+ * Caching of data of renderer
+ */
class cache_renderer extends cache_parser {
/**
@@ -275,6 +284,9 @@ class cache_renderer extends cache_parser {
}
}
+/**
+ * Caching of parser instructions
+ */
class cache_instructions extends cache_parser {
/**