legacy_help
Definition
legacy_help($section)
modules/legacy.module, line 11
Description
Implementation of hook_help().
Code
<?php
function legacy_help($section) {
switch ($section) {
case 'admin/modules#description':
return t('Provides legacy handlers for upgrades from older Drupal installations.');
}
}
?> 