function splashify_help in Splashify 7
Same name and namespace in other branches
- 6 splashify.module \splashify_help()
Implements hook_help().
File
- ./
splashify.module, line 186
Code
function splashify_help($path, $arg) {
switch ($path) {
case 'admin/help#splashify':
$output = '';
$output .= '<h3>' . t('Splashify Help') . '</h3>';
$output .= '<h4>' . t('What do we consider a splash page?') . '</h4>';
$output .= '<p>' . t("We define a splash page as being content that shows up at a specified interval, at a specified location, one time. If someone goes to a certain page for the first time, we want to make sure the splash content shows up. But if the person is coming from an internal link on the site, we don't want the splash content to show up over and over again (otherwise, the splash page would become a nuisance).") . '</p>';
$output .= '<p>' . t('We determine how often the splash page should show up by what is defined under the "When" tab.') . '</p>';
return $output;
}
}