function memcache_admin_theme in Memcache API and Integration 6
Same name and namespace in other branches
- 7 memcache_admin/memcache_admin.module \memcache_admin_theme()
Implementation of hook_theme().
File
- memcache_admin/
memcache_admin.module, line 381
Code
function memcache_admin_theme() {
return array(
'memcache_admin_stats_table' => array(
'arguments' => array(
'bin' => NULL,
'servers' => NULL,
'report' => NULL,
),
),
'memcache_admin_stats_raw_table' => array(
'arguments' => array(
'bin' => NULL,
'server' => NULL,
'stats' => NULL,
'type' => NULL,
),
),
);
}