Joomla Platform
13.1
Documentation des API du framework Joomla Platform
|
Fonctions membres publiques | |
__construct ($options) | |
__call ($name, $arguments) | |
setCaching ($enabled) | |
setLifeTime ($lt) | |
get ($id, $group=null) | |
store ($data, $id, $group=null, $wrkarounds=true) |
Fonctions membres publiques statiques | |
static | getInstance ($type= 'output', $options=array()) |
static | addIncludePath ($path= '') |
Attributs publics | |
$cache | |
$options |
Définition à la ligne 19 du fichier controller.php.
JCacheController::__construct | ( | $options | ) |
Constructor
array | $options | Array of options |
Définition à la ligne 44 du fichier controller.php.
JCacheController::__call | ( | $name, | |
$arguments | |||
) |
Magic method to proxy JCacheControllerMethods
string | $name | Name of the function |
array | $arguments | Array of arguments for the function |
Définition à la ligne 69 du fichier controller.php.
|
static |
Add a directory where JCache should search for controllers. You may either pass a string or an array of directories.
string | $path | A path to search. |
Définition à la ligne 150 du fichier controller.php.
Références JPath\clean(), et jimport().
JCacheController::get | ( | $id, | |
$group = null |
|||
) |
Get stored cached data by id and group
string | $id | The cache data id |
string | $group | The cache data group |
Réimplémentée dans JCacheControllerPage.
Définition à la ligne 176 du fichier controller.php.
|
static |
Returns a reference to a cache adapter object, always creating it
string | $type | The cache object type to instantiate; default is output. |
array | $options | Array of options |
RuntimeException |
Définition à la ligne 86 du fichier controller.php.
Références JPath\find(), et jimport().
Référencé par JCache\getInstance().
JCacheController::setCaching | ( | $enabled | ) |
Set caching enabled state
boolean | $enabled | True to enable caching |
Définition à la ligne 121 du fichier controller.php.
JCacheController::setLifeTime | ( | $lt | ) |
Set cache lifetime
integer | $lt | Cache lifetime |
Définition à la ligne 135 du fichier controller.php.
JCacheController::store | ( | $data, | |
$id, | |||
$group = null , |
|||
$wrkarounds = true |
|||
) |
Store data to cache by id and group
mixed | $data | The data to store |
string | $id | The cache data id |
string | $group | The cache data group |
boolean | $wrkarounds | True to use wrkarounds |
Réimplémentée dans JCacheControllerPage.
Définition à la ligne 217 du fichier controller.php.
JCacheController::$cache |
Définition à la ligne 27 du fichier controller.php.
JCacheController::$options |
Définition à la ligne 35 du fichier controller.php.