You are here

function ajaxblocks_help in Ajax Blocks 7

Same name and namespace in other branches
  1. 6 ajaxblocks.module \ajaxblocks_help()

Implements hook_help().

File

./ajaxblocks.module, line 445
Loads dynamic blocks on cached page for anonymous users by performing AJAX request.

Code

function ajaxblocks_help($path, $arg) {
  switch ($path) {
    case 'admin/help#ajaxblocks':
      $output = '';
      $output .= '<h3>' . t('About') . '</h3>';
      $output .= '<p>' . t('The AjaxBlocks module provides new settings for every block, which allow to choose the loading method for this block content if the cached page is to be displayed for anonymous users:<br />1. within the page - the usual way for Drupal.<br />2. by additional AJAX request after loading the cached page.') . '</p>';
      return $output;
  }
  return NULL;
}