You are here

function ajaxblocks_help in Ajax Blocks 6

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

Implements hook_help().

File

./ajaxblocks.module, line 464
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':
      return '<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>';
  }
}