function uc_csv_help in Ubercart CSV 7.2
Implements hook_help
File
- ./
uc_csv.module, line 883
Code
function uc_csv_help($path, $args) {
switch ($path) {
case 'admin/help#uc_csv':
// Define variables that will be used in our help file but only if we are going
// to the main help page.
$create_new_report = l('Create New Report', 'admin/store/export/create');
return theme('uc_csv_help_page', array(
'create_new_report' => $create_new_report,
));
break;
}
}