function panels_simple_cache_admin in Panels 5.2
Same name and namespace in other branches
- 6.2 panels_simple_cache/panels_simple_cache.module \panels_simple_cache_admin()
Page callback for the very short admin page.
1 string reference to 'panels_simple_cache_admin'
- panels_simple_cache_menu in panels_simple_cache/
panels_simple_cache.module - Implementation of hook_menu().
File
- panels_simple_cache/
panels_simple_cache.module, line 30 - panels_simple_cache.module
Code
function panels_simple_cache_admin() {
$output = '<p>';
$output .= t('Panels simple cache does not have a normal administrative UI, such as panels pages or mini panels. With this module, you are given the option to add caching features to any panel display in panel pages, mini panels, panel nodes or any other displays provided by other modules or plugins. These options are available as an icon on each pane of the edit content pane.');
$output .= '</p><p>';
$output .= t('This module provides only very simple, time-based caching; it is not at all suitable if your content will change at all per user (and this can mean administrative additions that are just visible to you) as all users will see the same content; it is provided mostly as a reference implementation for other, smarter caching modules.');
$output .= '</p>';
return $output;
}