Joomla Platform
13.1
Documentation des API du framework Joomla Platform
|
Fonctions membres publiques | |
__construct ($options=array()) | |
get ($id, $group, $checkTime=true) | |
getAll () | |
store ($id, $group, $data) | |
remove ($id, $group) | |
clean ($group, $mode=null) | |
gc () | |
lock ($id, $group, $locktime) | |
unlock ($id, $group=null) |
Fonctions membres publiques statiques | |
static | isSupported () |
Fonctions membres publiques statiques inherited from JCacheStorage | |
static | getInstance ($handler=null, $options=array()) |
static | test () |
static | addIncludePath ($path= '') |
Fonctions membres protégées | |
_checkExpire ($id, $group) | |
_getFilePath ($id, $group) | |
_deleteFolder ($path) | |
_cleanPath ($path, $ds=DIRECTORY_SEPARATOR) | |
_filesInFolder ($path, $filter= '.', $recurse=false, $fullpath=false, $exclude=array('.svn', 'CVS', '.DS_Store', '__MACOSX'), $excludefilter=array('^\..*', '.*~')) | |
_folders ($path, $filter= '.', $recurse=false, $fullpath=false, $exclude=array('.svn', 'CVS', '.DS_Store', '__MACOSX'), $excludefilter=array('^\..*')) | |
Fonctions membres protégées inherited from JCacheStorage | |
_getCacheId ($id, $group) |
Attributs protégés | |
$_root | |
Attributs protégés inherited from JCacheStorage | |
$rawname |
Additional Inherited Members | |
Attributs publics inherited from JCacheStorage | |
$_now | |
$_lifetime | |
$_locking | |
$_language | |
$_application | |
$_hash |
JCacheStorageFile::__construct | ( | $options = array() | ) |
Constructor
array | $options | Optional parameters |
Réimplémentée à partir de JCacheStorage.
|
protected |
Check to make sure cache is still valid, if not, delete it.
string | $id | Cache key to expire. |
string | $group | The cache data group. |
Définition à la ligne 346 du fichier file.php.
|
protected |
Function to strip additional / or \ in a path name
string | $path | The path to clean |
string | $ds | Directory separator (optional) |
Définition à la ligne 501 du fichier file.php.
|
protected |
Quickly delete a folder of files
string | $path | The path to the folder to delete. |
Définition à la ligne 405 du fichier file.php.
Références JText\_(), JLog\add(), JText\sprintf(), et JLog\WARNING.
|
protected |
Utility function to quickly read the files in a folder.
string | $path | The path of the folder to read. |
string | $filter | A filter for file names. |
mixed | $recurse | True to recursively search into sub-folders, or an integer to specify the maximum depth. |
boolean | $fullpath | True to return the full path to the file. |
array | $exclude | Array with names of files which should not be shown in the result. |
array | $excludefilter | Array of folder names to exclude |
Définition à la ligne 534 du fichier file.php.
Références JLog\add(), JText\sprintf(), et JLog\WARNING.
|
protected |
Utility function to read the folders in a folder.
string | $path | The path of the folder to read. |
string | $filter | A filter for folder names. |
mixed | $recurse | True to recursively search into sub-folders, or an integer to specify the maximum depth. |
boolean | $fullpath | True to return the full path to the folders. |
array | $exclude | Array with names of folders which should not be shown in the result. |
array | $excludefilter | Array with regular expressions matching folders which should not be shown in the result. |
Définition à la ligne 620 du fichier file.php.
Références JLog\add(), JText\sprintf(), et JLog\WARNING.
|
protected |
Get a cache file path from an id/group pair
string | $id | The cache data id |
string | $group | The cache data group |
Définition à la ligne 374 du fichier file.php.
JCacheStorageFile::clean | ( | $group, | |
$mode = null |
|||
) |
Clean cache for a group given a mode.
string | $group | The cache data group |
string | $mode | The mode for cleaning cache [group|notgroup] group mode : cleans all cache in the group notgroup mode : cleans all cache not in the group |
Réimplémentée à partir de JCacheStorage.
Définition à la ligne 183 du fichier file.php.
JCacheStorageFile::gc | ( | ) |
Garbage collect expired cache data
Réimplémentée à partir de JCacheStorage.
Définition à la ligne 223 du fichier file.php.
JCacheStorageFile::get | ( | $id, | |
$group, | |||
$checkTime = true |
|||
) |
Get cached data from a file by id and group
string | $id | The cache data id |
string | $group | The cache data group |
boolean | $checkTime | True to verify cache time expiration threshold |
Réimplémentée à partir de JCacheStorage.
Définition à la ligne 55 du fichier file.php.
JCacheStorageFile::getAll | ( | ) |
Get all cached data
Réimplémentée à partir de JCacheStorage.
Définition à la ligne 88 du fichier file.php.
|
static |
Test to see if the cache storage is available.
Réimplémentée à partir de JCacheStorage.
Définition à la ligne 247 du fichier file.php.
Références JFactory\getConfig().
JCacheStorageFile::lock | ( | $id, | |
$group, | |||
$locktime | |||
) |
Lock cached item
string | $id | The cache data id |
string | $group | The cache data group |
integer | $locktime | Cached item max lock time |
Réimplémentée à partir de JCacheStorage.
Définition à la ligne 264 du fichier file.php.
JCacheStorageFile::remove | ( | $id, | |
$group | |||
) |
Remove a cached data file by id and group
string | $id | The cache data id |
string | $group | The cache data group |
Réimplémentée à partir de JCacheStorage.
JCacheStorageFile::store | ( | $id, | |
$group, | |||
$data | |||
) |
Store the data to a file by id and group
string | $id | The cache data id |
string | $group | The cache data group |
string | $data | The data to store in cache |
Réimplémentée à partir de JCacheStorage.
Définition à la ligne 122 du fichier file.php.
JCacheStorageFile::unlock | ( | $id, | |
$group = null |
|||
) |
Unlock cached item
string | $id | The cache data id |
string | $group | The cache data group |
Réimplémentée à partir de JCacheStorage.
Définition à la ligne 321 du fichier file.php.