| Server IP : 195.130.67.5 / Your IP : 216.73.217.154 Web Server : Microsoft-IIS/10.0 System : Windows NT WEBSERVER1 10.0 build 17763 (Windows Server 2016) i586 User : IUSR ( 0) PHP Version : 7.4.19 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : OFF | Perl : OFF | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : C:/inetpub/wwwroot/business/sites/all/modules/ctools/plugins/cache/ |
Upload File : |
<?php
/**
* @file
* A simple cache indirection mechanism that just uses the basic object cache.
*/
$plugin = array(
// Cache plugins are the rare plugin types that have no real UI but
// we're providing a title just in case.
'title' => t('Simple'),
'cache get' => 'ctools_cache_simple_cache_get',
'cache set' => 'ctools_cache_simple_cache_set',
'cache clear' => 'ctools_cache_simple_cache_clear',
);
function ctools_cache_simple_cache_get($data, $key) {
ctools_include('object-cache');
// Ensure that if there is somehow no data, we at least don't stomp on other
// people's caches.
if (empty($data)) {
$data = 'simple_cache_plugin';
}
return ctools_object_cache_get($data, $key);
}
function ctools_cache_simple_cache_set($data, $key, $object) {
ctools_include('object-cache');
// Ensure that if there is somehow no data, we at least don't stomp on other
// people's caches.
if (empty($data)) {
$data = 'simple_cache_plugin';
}
return ctools_object_cache_set($data, $key, $object);
}
function ctools_cache_simple_cache_clear($data, $key) {
ctools_include('object-cache');
// Ensure that if there is somehow no data, we at least don't stomp on other
// people's caches.
if (empty($data)) {
$data = 'simple_cache_plugin';
}
return ctools_object_cache_clear($data, $key);
}