function asset_bonus_help in Asset 5.2
Same name and namespace in other branches
- 5 asset_bonus/asset_bonus.module \asset_bonus_help()
- 6 asset_bonus/asset_bonus.module \asset_bonus_help()
- 6 contrib/asset_bonus/asset_bonus.module \asset_bonus_help()
File
- contrib/
asset_bonus/ asset_bonus.module, line 6
Code
function asset_bonus_help($section) {
switch ($section) {
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('digett.com', 'http://digett.com/sites/digett.com/files/asset_bonus.zip'),
));
}
}