Limit UI to just ID

This commit is contained in:
Nathan Gray 2011-04-07 15:10:05 +00:00
parent f4e372747a
commit 02d8b86d7e

View File

@ -48,4 +48,16 @@ class calendar_wizard_import_csv extends importexport_wizard_basic_import_csv
return $result; return $result;
} }
// Conditions
function wizard_step55(&$content, &$sel_options, &$readonlys, &$preserv)
{
$result = parent::wizard_step55($content, $sel_options, $readonlys, $preserv);
// Search can only deal with ID
$sel_options['string'] = array(
'id' => 'Calendar ID'
);
return $result;
}
} }