signup_ecommerce_help($section)
signup_ecommerce/signup_ecommerce.module, line 12
Implementation of hook_help().
| Name | Description |
|---|---|
| Core drupal hooks |
<?php
function signup_ecommerce_help($section) {
switch ($section) {
case 'admin/help#signup_ecommerce':
return '<p>'. t('signup_ecommerce provides basic integration between the ecommerce module and the signup module, specifically allowing automatic user signup upon purchase of an enabled product type.') .'</p>'.
'<p>'. t('To enable the feature, go to the <a href="%url">content types configuration page</a>, and click %configure for the content type you wish to enable. Make sure that the %allow_signups and %signup_ecommerce_integration checkboxes are checked, and save the settings.', array('%url' => url('admin/settings/content-types'), '%configure' => theme('placeholder', t('configure')), '%allow_signups' => theme('placeholder', t('Allow signups by default')), '%signup_ecommerce_integration' => theme('placeholder', t('Signup E-commerce integration')))) .'</p>'.
'<p>'. t('For the node type you just enabled, any time somebody purchases a product of that node type, they will automatically be signed up for that node. The signup information will include the transaction ID for reference.') .'</p>';
}
}
?>