function phone_help in Phone 7.2
Implements hook_help().
File
- ./
phone.module, line 11 - The phone module lets administrators use a phone number field type.
Code
function phone_help($path, $arg) {
switch ($path) {
case 'admin/help#phone':
return '<p>' . t('The phone module lets administrators use a phone number field type.') . '</p>';
}
}