|
TYPO3 API
SVNRelease
|


Public Member Functions | |
| __construct ($identifier, t3lib_cache_backend_PhpCapableBackend $backend) | |
| set ($entryIdentifier, $sourceCode, $tags=array(), $lifetime=NULL) | |
| requireOnce ($entryIdentifier) | |
Definition at line 37 of file class.t3lib_cache_frontend_phpfrontend.php.
| t3lib_cache_frontend_PhpFrontend::__construct | ( | $ | identifier, |
| t3lib_cache_backend_PhpCapableBackend $ | backend | ||
| ) |
Constructs the cache
| string | $identifier | A identifier which describes this cache |
| t3lib_cache_backend_PhpCapableBackend | $backend | Backend to be used for this cache |
Definition at line 45 of file class.t3lib_cache_frontend_phpfrontend.php.
References t3lib_cache_frontend_AbstractFrontend\$identifier.
| t3lib_cache_frontend_PhpFrontend::requireOnce | ( | $ | entryIdentifier | ) |
Loads PHP code from the cache and require_onces it right away.
| string | $entryIdentifier | An identifier which describes the cache entry to load |
Definition at line 93 of file class.t3lib_cache_frontend_phpfrontend.php.
| t3lib_cache_frontend_PhpFrontend::set | ( | $ | entryIdentifier, |
| $ | sourceCode, | ||
| $ | tags = array(), |
||
| $ | lifetime = NULL |
||
| ) |
Saves the PHP source code in the cache.
| string | $entryIdentifier | An identifier used for this cache entry, for example the class name |
| string | $sourceCode | PHP source code |
| array | $tags | Tags to associate with this cache entry |
| integer | $lifetime | Lifetime of this cache entry in seconds. If NULL is specified, the default lifetime is used. "0" means unlimited liftime. |
Reimplemented from t3lib_cache_frontend_StringFrontend.
Definition at line 60 of file class.t3lib_cache_frontend_phpfrontend.php.
References t3lib_cache_frontend_AbstractFrontend\isValidEntryIdentifier(), and t3lib_cache_frontend_AbstractFrontend\isValidTag().
1.7.5.1