You are here

function asset_bonus_help in Asset 6

Same name in this branch
  1. 6 asset_bonus/asset_bonus.module \asset_bonus_help()
  2. 6 contrib/asset_bonus/asset_bonus.module \asset_bonus_help()
Same name and namespace in other branches
  1. 5.2 contrib/asset_bonus/asset_bonus.module \asset_bonus_help()
  2. 5 asset_bonus/asset_bonus.module \asset_bonus_help()

File

asset_bonus/asset_bonus.module, line 14

Code

function asset_bonus_help($path, $arg) {
  switch ($path) {
    case 'admin/help#asset_bonus':
    case 'admin/settings/asset/asset_bonus':
      return t('<p>The Asset Bonus Pack adds additional functionality to the
               Asset module for handling audio files and Flash objects.</p>
               <p>The Assets Bonus Pack consists of two parts. The first part is
               included with the Asset module. Due to licensing guidelines on
               Drupal.org (only software licensed under the GPL may be included
               in CVS) the second part must be downloaded separately from
               !link. Though the additional files are open-source, they are not
               GPL licensed.</p>
               <p>The zip file includes three folders. Unzip these folders into
               the <em>modules/asset/asset_bonus</em> folder and check below to
               make sure that they were found.</p>', array(
        '!link' => l('mostrey.be', 'http://mostrey.be/files/asset_bonus.zip'),
      ));
  }
}