You are here

function kraken_help in Kraken 7.2

Same name and namespace in other branches
  1. 7 kraken.module \kraken_help()

Implements hook_help().

File

./kraken.module, line 11
Provides optimised images via http://kraken.io.

Code

function kraken_help($path, $arg) {
  switch ($path) {

    // Main module help for the kraken module
    case 'admin/help#kraken':
      return '<p>' . t('Getting the highest quality images with the smallest
        file sizes can be difficult. !krakenio provides a service to optimize
        your images and strikes a good balance between high image quality and
        small file sizes. This module submits the images users provide when
        adding or editing content on your site to Kraken.io. Kraken.io returns
        an optimized version which is stored on your site. Configuring the
        kraken module is done on the !img_toolkit page.</p>', array(
        '!img_toolkit' => l(t('image toolkit'), 'admin/config/media/image-toolkit'),
        '!krakenio' => l(t('Kraken.io'), 'http://kraken.io'),
      ));
  }
}