The most common theme element for logged-in users is a username link (e.g. "Hello, [username]"). Authcache defines several new variables to use in your theme files (e.g., page.tpl.php):
$user_name
to display the logged-in user name$user_link
to display the name linked to their profile (both work for cached and non-cached pages).
A global variable named
$is_page_authcache
is set to TRUE when a page is to be cached. This variable may change to FALSE during page generation, however, such as when a status message is displayed. You may also set it to FALSE to programmatically disable caching.The authcache_preprocess() function defines these variables. For example, if a page is to be cached, then the output of
$user_name
will be <span class="authcache-user"></span>
. The value will then be filled in automatically by Authcache JavaScript. The username and user id is retrieved from a cookie that is created when a user logs in.For more information about Drupal Development, Drupal Expert, Drupal Developer and Drupal Programmer visit at http://www.dckap.com
Source: http://drupal.org/node/996452
No comments:
Post a Comment